diff options
| author | 2026-03-17 13:43:05 +0100 | |
|---|---|---|
| committer | 2026-03-17 16:10:00 +0100 | |
| commit | 3eeb6f219e4d32160fa10895b57a8ddfefff5ff7 (patch) | |
| tree | febb6021a9e4a8593bd67402b25082b2f7109f72 /src/ir.c | |
| parent | a8d6f8bf30c07edb775e56889f568ca20240bedf (diff) | |
REFACTOR: finish renaming
Diffstat (limited to 'src/ir.c')
| -rw-r--r-- | src/ir.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ #include "ir.h" -#include "../obj/obj.h" +#include "obj.h" uchar type2cls[NTYPETAG]; uchar cls2siz[] = { [KI32] = 4, [KI64] = 8, [KF32] = 4, [KF64] = 8 }; @@ -15,14 +15,14 @@ const uchar siz2intcls[] = { [1] = KI32, [2] = KI32, [4] = KI32, [8] = KI64 }; const char *opnames[] = { "?\??", #define _(o,...) #o, -#include "op.def" +#include "ir_op.def" #undef _ }; const uchar opnarg[] = { 0, #define _(o,n) n, -#include "op.def" +#include "ir_op.def" #undef _ }; |