Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Glasgow Haskell Compiler
GHC
Commits
822b7a9d
Commit
822b7a9d
authored
Feb 24, 2006
by
David Himmelstrup
Browse files
Remove some unused bindings frm RnNames.
parent
ae3ba7ec
Changes
1
Hide whitespace changes
Inline
Side-by-side
ghc/compiler/rename/RnNames.lhs
View file @
822b7a9d
...
...
@@ -8,8 +8,7 @@ module RnNames (
rnImports, mkRdrEnvAndImports, importsFromLocalDecls,
rnExports, mkExportNameSet,
getLocalDeclBinders, extendRdrEnvRn,
reportUnusedNames, reportDeprecations,
mkModDeps
reportUnusedNames, reportDeprecations
) where
#include "HsVersions.h"
...
...
@@ -215,12 +214,8 @@ importsFromImportDeclDirect this_mod
warnIf (want_boot && not (mi_boot iface))
(warnRedundantSourceImport imp_mod_name)
let deprecs = mi_deprecs iface
is_orph = mi_orphan iface
deps = mi_deps iface
filtered_exports = filter not_this_mod (mi_exports iface)
let filtered_exports = filter not_this_mod (mi_exports iface)
not_this_mod (mod,_) = mod /= this_mod
imp_mod = mi_module iface
-- If the module exports anything defined in this module, just ignore it.
-- Reason: otherwise it looks as if there are two local definition sites
...
...
Write
Preview
Markdown
is supported
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