From 3eeb6f219e4d32160fa10895b57a8ddfefff5ff7 Mon Sep 17 00:00:00 2001 From: lemon Date: Tue, 17 Mar 2026 13:43:05 +0100 Subject: REFACTOR: finish renaming --- src/ir.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/ir.c') 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 _ }; -- cgit v1.2.3