From: Ian Lynagh Date: Wed, 23 Jul 2008 19:19:48 +0000 (+0000) Subject: Fix a build error on powerpc/Linux; spotted by Jeroen Pulles X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=497d3a963f679681db098588bcab00121687c8ed;p=ghc-hetmet.git Fix a build error on powerpc/Linux; spotted by Jeroen Pulles --- diff --git a/compiler/nativeGen/PprMach.hs b/compiler/nativeGen/PprMach.hs index b77f754..694e487 100644 --- a/compiler/nativeGen/PprMach.hs +++ b/compiler/nativeGen/PprMach.hs @@ -349,7 +349,7 @@ pprReg IF_ARCH_i386(s,) IF_ARCH_x86_64(s,) r ppr_reg_no :: Int -> Doc ppr_reg_no i | i <= 31 = int i -- GPRs | i <= 63 = int (i-32) -- FPRs - | otherwise = ptext sLit "very naughty powerpc register" + | otherwise = ptext (sLit "very naughty powerpc register") #endif #endif