diff options
author | Simon Marlow <simonmar@microsoft.com> | 2006-07-25 13:12:01 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2006-07-25 13:12:01 +0000 |
commit | 6e2cffab037ee968dc49658ba75cc03beabcb769 (patch) | |
tree | 32e9f52443207149e621c0d6997f48eba57dfd9d /compiler/iface/IfaceEnv.lhs | |
parent | 39a2bccc3221f195892609c5c1e2fee81676b63d (diff) | |
download | haskell-6e2cffab037ee968dc49658ba75cc03beabcb769.tar.gz |
tiny bit of extra strictness
Diffstat (limited to 'compiler/iface/IfaceEnv.lhs')
-rw-r--r-- | compiler/iface/IfaceEnv.lhs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/iface/IfaceEnv.lhs b/compiler/iface/IfaceEnv.lhs index 3eceaa0f04..6699a75708 100644 --- a/compiler/iface/IfaceEnv.lhs +++ b/compiler/iface/IfaceEnv.lhs @@ -358,7 +358,7 @@ lookupHomePackage mod_name occ newIfaceName :: OccName -> IfL Name newIfaceName occ = do { uniq <- newUnique - ; return (mkInternalName uniq occ noSrcLoc) } + ; return $! mkInternalName uniq occ noSrcLoc } newIfaceNames :: [OccName] -> IfL [Name] newIfaceNames occs |