From ca23a0493febcc04f6f2fda5a221ad7350ad8bec Mon Sep 17 00:00:00 2001 From: simonmar Date: Wed, 20 Oct 2004 11:16:08 +0000 Subject: [PATCH] [project @ 2004-10-20 11:16:08 by simonmar] Fix braino in pprAsmCLbl --- ghc/compiler/cmm/CLabel.hs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ghc/compiler/cmm/CLabel.hs b/ghc/compiler/cmm/CLabel.hs index 1366dcb..f50d406 100644 --- a/ghc/compiler/cmm/CLabel.hs +++ b/ghc/compiler/cmm/CLabel.hs @@ -574,10 +574,9 @@ maybe_underscore doc -- (The C compiler does this itself). pprAsmCLbl (ForeignLabel fs (Just sz) _) = ftext fs <> char '@' <> int sz -#else +#endif pprAsmCLbl lbl = pprCLbl lbl -#endif pprCLbl (StringLitLabel u) = pprUnique u <> ptext SLIT("_str") -- 1.7.10.4