From: Simon Marlow Date: Wed, 30 Jul 2008 10:52:03 +0000 (+0000) Subject: oops, fix a small pessimisation made in previous refactoring X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=0f881aa7613f235192a89f90112ac3b47e44bb39;p=ghc-hetmet.git oops, fix a small pessimisation made in previous refactoring --- 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