From 970cd21327e30e5b9af594884f1ac79334ed0582 Mon Sep 17 00:00:00 2001 From: "mrchebas@gmail.com" Date: Fri, 19 Jan 2007 16:05:01 +0000 Subject: [PATCH] x86: disable assertion that conditionals are not on I8; they can be --- compiler/nativeGen/MachCodeGen.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/nativeGen/MachCodeGen.hs b/compiler/nativeGen/MachCodeGen.hs index 007f472..17ee624 100644 --- a/compiler/nativeGen/MachCodeGen.hs +++ b/compiler/nativeGen/MachCodeGen.hs @@ -2060,7 +2060,7 @@ getCondCode = panic "MachCode.getCondCode: not on Alphas" -- yes, they really do seem to want exactly the same! getCondCode (CmmMachOp mop [x, y]) - = ASSERT (cmmExprRep x /= I8) -- tmp, not set up to handle 8-bit comparisons + = case mop of MO_Eq F32 -> condFltCode EQQ x y MO_Ne F32 -> condFltCode NE x y -- 1.7.10.4