Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Alex D
GHC
Commits
6d23bdb7
Commit
6d23bdb7
authored
Jul 05, 2007
by
Simon Marlow
Browse files
-ddump-hi-diffs shouldn't imply -fforce-recomp, that defeats the purpose
parent
22bb0627
Changes
1
Hide whitespace changes
Inline
Side-by-side
compiler/main/DynFlags.hs
View file @
6d23bdb7
...
...
@@ -973,13 +973,13 @@ dynamic_flags = [
,
(
"dsource-stats"
,
setDumpFlag
Opt_D_source_stats
)
,
(
"dverbose-core2core"
,
setDumpFlag
Opt_D_verbose_core2core
)
,
(
"dverbose-stg2stg"
,
setDumpFlag
Opt_D_verbose_stg2stg
)
,
(
"ddump-hi-diffs"
,
setDumpFlag
Opt_D_dump_hi_diffs
)
,
(
"ddump-hi"
,
setDumpFlag
Opt_D_dump_hi
)
,
(
"ddump-minimal-imports"
,
setDumpFlag
Opt_D_dump_minimal_imports
)
,
(
"ddump-vect"
,
setDumpFlag
Opt_D_dump_vect
)
,
(
"ddump-hpc"
,
setDumpFlag
Opt_D_dump_hpc
)
,
(
"ddump-mod-cycles"
,
setDumpFlag
Opt_D_dump_mod_cycles
)
,
(
"ddump-hi-diffs"
,
NoArg
(
setDynFlag
Opt_D_dump_hi_diffs
))
,
(
"dcore-lint"
,
NoArg
(
setDynFlag
Opt_DoCoreLinting
))
,
(
"dstg-lint"
,
NoArg
(
setDynFlag
Opt_DoStgLinting
))
,
(
"dcmm-lint"
,
NoArg
(
setDynFlag
Opt_DoCmmLinting
))
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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