aboutsummaryrefslogtreecommitdiffhomepage
path: root/ir/fold.c
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2025-11-21 11:03:23 +0100
committerlemon <lsof@mailbox.org>2025-11-21 11:03:23 +0100
commit285063eba442e2a8ac29fd42e0d17d996bcc5d00 (patch)
tree7779cdbdc72ded422840d560475cf297f4f37ca9 /ir/fold.c
parent337eac613ae7fd5ce9229fc9000f9c6a5aef1890 (diff)
rename IR classes to reflect bitsize
Diffstat (limited to 'ir/fold.c')
-rw-r--r--ir/fold.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ir/fold.c b/ir/fold.c
index bfd78ff..bad0373 100644
--- a/ir/fold.c
+++ b/ir/fold.c
@@ -58,7 +58,7 @@ foldflt(enum op op, enum irclass k, union ref lr, union ref rr)
{
int xi;
double x, l = fltconval(lr), r = fltconval(rr);
- bool w = k == KF8;
+ bool w = k == KF64;
if (in_range(op, Odiv, Ourem)) assert(r != 0.0);
switch (op) {
case Ocopy: x = l; break;