aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ir.h
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.h
parenta8d6f8bf30c07edb775e56889f568ca20240bedf (diff)
REFACTOR: finish renaming
Diffstat (limited to 'src/ir.h')
-rw-r--r--src/ir.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ir.h b/src/ir.h
index ab3e474..0aa5395 100644
--- a/src/ir.h
+++ b/src/ir.h
@@ -1,5 +1,5 @@
-#include "../common.h"
-#include "../type.h"
+#include "antcc.h"
+#include "c_type.h"
enum irclass {
KXXX,
@@ -93,7 +93,7 @@ struct addr {
enum op {
Oxxx,
#define _(o,...) O##o,
-#include "op.def"
+#include "ir_op.def"
#undef _
NOPER,
};
@@ -109,7 +109,7 @@ extern const uchar opnarg[];
enum intrin {
INxxx,
#define _(b,...) IN##b,
-#include "intrin.def"
+#include "ir_intrin.def"
#undef _
};