diff options
Diffstat (limited to 'codegen.c')
| -rw-r--r-- | codegen.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,5 @@ #include "ccc.h" +#include "hashmap.h" #include "codegen.h" #include "scope.h" #include "register.h" @@ -28,7 +29,7 @@ static struct reg* MULDIV_OVERFLOW_REG = &RDX; #define FULL_REG_SZ 8 #define WORD_SZ 2 -static struct dseg dseg; +static struct hash_map dseg; static struct scope* scope; static const struct fn_decl_node* active_fn; static integral_t branch_counter = 0; |
