aboutsummaryrefslogtreecommitdiffhomepage
path: root/ir/fold.c
diff options
context:
space:
mode:
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;