Skip to content
Snippets Groups Projects
Commit 04db733c authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 1997-10-15 14:09:21 by simonm]

reverse the sense of -fwarn-incomplete-patterns and
-fwarn-overlapped-patterns, these are now added automatically by the
driver if necessary.
parent 938f8367
No related merge requests found
......@@ -348,8 +348,8 @@ opt_UnfoldingConDiscount = lookup_def_int "-funfolding-con-discount" uNFOLDIN
opt_LiberateCaseThreshold = lookup_def_int "-fliberate-case-threshold" lIBERATE_CASE_THRESHOLD
opt_WarnNameShadowing = lookUp SLIT("-fwarn-name-shadowing")
opt_WarnIncompletePatterns = not (lookUp SLIT("-fno-warn-incomplete-patterns"))
opt_WarnOverlappedPatterns = not (lookUp SLIT("-fno-warn-overlapped-patterns"))
opt_WarnIncompletePatterns = lookUp SLIT("-fwarn-incomplete-patterns")
opt_WarnOverlappedPatterns = lookUp SLIT("-fwarn-overlapped-patterns")
opt_WarnUnusedNames = lookUp SLIT("-fwarn-unused-names")
opt_PruneTyDecls = not (lookUp SLIT("-fno-prune-tydecls"))
opt_PruneInstDecls = not (lookUp SLIT("-fno-prune-instdecls"))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment