aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ir.c
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2026-03-22 22:00:35 +0100
committerlemon <lsof@mailbox.org>2026-03-22 22:00:35 +0100
commit7c5dd45eca377a3b675b6f0d4a9331bc3f971ac9 (patch)
tree08d7a252029da556d09b6014018678f80a75c032 /src/ir.c
parent33d31f72d546b4b224c226e82fb111e24f8b2e37 (diff)
style: change uvlong -> u64int, vlong -> s64int
Is much nicer. I don't know whether I want to do it for the other int types too. char and uchar are fine as bytes. u/short -> u/s16int, maybe.
Diffstat (limited to 'src/ir.c')
-rw-r--r--src/ir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ir.c b/src/ir.c
index 6cdb43d..f0d58b2 100644
--- a/src/ir.c
+++ b/src/ir.c
@@ -133,7 +133,7 @@ mkirtype(Type t)
}
Ref
-mkintcon(enum irclass k, vlong i)
+mkintcon(enum irclass k, s64int i)
{
if (i < 1l << 28 && i >= -(1l << 28)) {
return mkref(RICON, i);