From 497d3a963f679681db098588bcab00121687c8ed Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Wed, 23 Jul 2008 19:19:48 +0000 Subject: [PATCH] Fix a build error on powerpc/Linux; spotted by Jeroen Pulles --- compiler/nativeGen/PprMach.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 1.7.10.4