From f4020db2f0d772481ba71edf78fbb65575badc00 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 6 Apr 2025 21:21:42 -0400 Subject: Fix for empty nums --- src/compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/compile.c b/src/compile.c index 4d722321..b49f4c49 100644 --- a/src/compile.c +++ b/src/compile.c @@ -2507,7 +2507,7 @@ CORD compile_empty(type_t *t) return empty_pointed == CORD_EMPTY ? CORD_EMPTY : CORD_all(ptr->is_stack ? "stack(" : "heap(", empty_pointed, ")"); } case NumType: { - return Match(t, NumType)->bits == TYPE_NBITS32 ? "Num32(0.0f)" : "Num64(0.0)" ; + return Match(t, NumType)->bits == TYPE_NBITS32 ? "N32(0.0f)" : "N64(0.0)" ; } case StructType: { auto struct_ = Match(t, StructType); -- cgit v1.2.3