From 640a3dac2b18d037169af15dfd5502c386c7e828 Mon Sep 17 00:00:00 2001 From: lemon Date: Fri, 26 May 2023 09:20:58 +0200 Subject: hm --- irdump.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'irdump.c') diff --git a/irdump.c b/irdump.c index b7fbcc0..7855244 100644 --- a/irdump.c +++ b/irdump.c @@ -5,7 +5,7 @@ extern struct xcon conht[]; extern vec_of(struct ircall) calls; static const char *clsname[] = { - "?", "i4", "i8", "iP", "f4", "f8" + "?", "i4", "i8", "ptr", "f4", "f8" }; static void @@ -38,7 +38,7 @@ dumpref(union irref ref) else switch (con->cls) { case KI4: efmt("%d", con->i4); break; case KI8: efmt("%ld", con->i8); break; - case KIP: efmt("%'x", con->i8); break; + case KPTR: efmt("%'x", con->i8); break; case KF4: efmt("%f", con->fs); break; case KF8: efmt("%f", con->fd); break; default: assert(0); -- cgit v1.2.3