diff options
author | Ian Lynagh <igloo@earth.li> | 2008-04-12 13:30:30 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2008-04-12 13:30:30 +0000 |
commit | 6273ef4138e164d7b68ef7bdfdd6b8ce468de3d4 (patch) | |
tree | 7ad362d060bdf9d605990da4a8a8e91fd368f0a1 /compiler/codeGen | |
parent | 60989a6fc0067600c90217bd673b60bf6448c076 (diff) | |
download | haskell-6273ef4138e164d7b68ef7bdfdd6b8ce468de3d4.tar.gz |
(F)SLIT -> (f)sLit in ClosureInfo
Diffstat (limited to 'compiler/codeGen')
-rw-r--r-- | compiler/codeGen/ClosureInfo.lhs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/codeGen/ClosureInfo.lhs b/compiler/codeGen/ClosureInfo.lhs index 37b3a5895e..23113d2afb 100644 --- a/compiler/codeGen/ClosureInfo.lhs +++ b/compiler/codeGen/ClosureInfo.lhs @@ -139,7 +139,7 @@ needsSRT NoC_SRT = False needsSRT (C_SRT _ _ _) = True instance Outputable C_SRT where - ppr (NoC_SRT) = ptext SLIT("_no_srt_") + ppr (NoC_SRT) = ptext (sLit "_no_srt_") ppr (C_SRT label off bitmap) = parens (ppr label <> comma <> ppr off <> comma <> text (show bitmap)) \end{code} |