oops, fix a small pessimisation made in previous refactoring
authorSimon Marlow <marlowsd@gmail.com>
Wed, 30 Jul 2008 10:52:03 +0000 (10:52 +0000)
committerSimon Marlow <marlowsd@gmail.com>
Wed, 30 Jul 2008 10:52:03 +0000 (10:52 +0000)
compiler/nativeGen/MachCodeGen.hs

index c494310..b2f3dff 100644 (file)
@@ -2092,7 +2092,7 @@ is32BitLit (CmmInt i I64) = is32BitInteger i
    -- assume that labels are in the range 0-2^31-1: this assumes the
    -- small memory model (see gcc docs, -mcmodel=small).
 #endif
-is32BitLit x = False
+is32BitLit x = True
 #endif
 
 is32BitInteger :: Integer -> Bool