Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Glasgow Haskell Compiler
GHC
Commits
52f8fed4
Commit
52f8fed4
authored
Oct 04, 2006
by
simonpj@microsoft.com
Browse files
Comments only
parent
7086e46a
Changes
2
Hide whitespace changes
Inline
Side-by-side
compiler/prelude/PrelNames.lhs
View file @
52f8fed4
...
...
@@ -670,11 +670,13 @@ mk_known_key_name space mod str uniq
Nothing noSrcLoc
conName :: Name -> FastString -> Unique -> Name
-- Be careful to ghve constructor names the right parent!
conName tycon occ uniq
= mkExternalName uniq (nameModule tycon) (mkOccNameFS dataName occ)
(Just tycon) noSrcLoc
methName :: Name -> FastString -> Unique -> Name
-- Be careful to ghve method names the right parent!
methName cls occ uniq
= mkExternalName uniq (nameModule cls) (mkVarOccFS occ)
(Just cls) noSrcLoc
...
...
compiler/simplCore/SimplEnv.lhs
View file @
52f8fed4
...
...
@@ -308,7 +308,7 @@ substId (SimplEnv { seInScope = in_scope, seIdSubst = ids }) v
where
-- Get the most up-to-date thing from the in-scope set
-- Even though it isn't in the substitution, it may be in
-- the in-scope set better IdInfo
-- the in-scope set
with
better IdInfo
refine v = case lookupInScope in_scope v of
Just v' -> v'
Nothing -> WARN( True, ppr v ) v -- This is an error!
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment