aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ir.c
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2026-03-17 13:43:05 +0100
committerlemon <lsof@mailbox.org>2026-03-17 16:10:00 +0100
commit3eeb6f219e4d32160fa10895b57a8ddfefff5ff7 (patch)
treefebb6021a9e4a8593bd67402b25082b2f7109f72 /src/ir.c
parenta8d6f8bf30c07edb775e56889f568ca20240bedf (diff)
REFACTOR: finish renaming
Diffstat (limited to 'src/ir.c')
-rw-r--r--src/ir.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ir.c b/src/ir.c
index b612143..840ba0b 100644
--- a/src/ir.c
+++ b/src/ir.c
@@ -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 _
};