X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=compiler%2Fghci%2FByteCodeGen.lhs;h=b4d026a9f45799068916526e9bce61113e8d205e;hb=59e99f059c3b3f235fa12f19f15544ebf022f35b;hp=007f3eb155bcb35a4eb0fe3e66866c6cfa1efdba;hpb=e0fcf61dca4dfac99cb5417e1bc4cbee18822cf2;p=ghc-hetmet.git diff --git a/compiler/ghci/ByteCodeGen.lhs b/compiler/ghci/ByteCodeGen.lhs index 007f3eb..b4d026a 100644 --- a/compiler/ghci/ByteCodeGen.lhs +++ b/compiler/ghci/ByteCodeGen.lhs @@ -110,7 +110,7 @@ coreExprToBCOs dflags expr -- create a totally bogus name for the top-level BCO; this -- should be harmless, since it's never used for anything - let invented_name = mkSystemVarName (mkPseudoUniqueE 0) FSLIT("ExprTopLevel") + let invented_name = mkSystemVarName (mkPseudoUniqueE 0) (fsLit "ExprTopLevel") invented_id = Id.mkLocalId invented_name (panic "invented_id's type") -- the uniques are needed to generate fresh variables when we introduce new @@ -1536,5 +1536,5 @@ newId ty = do uniq <- newUnique return $ mkSysLocal tickFS uniq ty -tickFS = FSLIT("ticked") +tickFS = fsLit "ticked" \end{code}