From 0f881aa7613f235192a89f90112ac3b47e44bb39 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Wed, 30 Jul 2008 10:52:03 +0000 Subject: [PATCH] oops, fix a small pessimisation made in previous refactoring --- 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 c494310..b2f3dff 100644 --- a/compiler/nativeGen/MachCodeGen.hs +++ b/compiler/nativeGen/MachCodeGen.hs @@ -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 -- 1.7.10.4