(F)SLIT -> (f)sLit in CmmLint
authorIan Lynagh <igloo@earth.li>
Sat, 12 Apr 2008 13:58:20 +0000 (13:58 +0000)
committerIan Lynagh <igloo@earth.li>
Sat, 12 Apr 2008 13:58:20 +0000 (13:58 +0000)
compiler/cmm/CmmLint.hs

index c4aee8a..bf10135 100644 (file)
@@ -17,8 +17,6 @@ module CmmLint (
   cmmLint, cmmLintTop
   ) where
 
-#include "HsVersions.h"
-
 import Cmm
 import CLabel
 import MachOp
@@ -43,7 +41,7 @@ cmmLintTop top = runCmmLint $ lintCmmTop top
 runCmmLint :: CmmLint a -> Maybe SDoc
 runCmmLint l = 
    case unCL l of
-       Left err -> Just (ptext SLIT("Cmm lint error:") $$ nest 2 err)
+       Left err -> Just (ptext (sLit "Cmm lint error:") $$ nest 2 err)
        Right _  -> Nothing
 
 lintCmmTop :: (GenCmmTop h i (ListGraph CmmStmt)) -> CmmLint ()