[commit: ghc] master: DynFlags: Add (another) missing hunk from D1360 (40e6214)
git at git.haskell.org
git at git.haskell.org
Thu Oct 29 15:15:18 UTC 2015
Repository : ssh://git@git.haskell.org/ghc
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/40e6214c06bc197dbdfcf9f7345dad1ad271922b/ghc
>---------------------------------------------------------------
commit 40e6214c06bc197dbdfcf9f7345dad1ad271922b
Author: Ben Gamari <ben at smart-cactus.org>
Date: Thu Oct 29 15:42:39 2015 +0100
DynFlags: Add (another) missing hunk from D1360
What a disaster this merge was.
>---------------------------------------------------------------
40e6214c06bc197dbdfcf9f7345dad1ad271922b
compiler/main/DynFlags.hs | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs
index 320a11e..8e5ba6a 100644
--- a/compiler/main/DynFlags.hs
+++ b/compiler/main/DynFlags.hs
@@ -2643,6 +2643,11 @@ dynamic_flags = [
, defGhcFlag "fmax-inline-memset-insns"
(intSuffix (\n d -> d{ maxInlineMemsetInsns = n }))
+ , defGhcFlag "dinitial-unique"
+ (intSuffix (\n d -> d{ initialUnique = n }))
+ , defGhcFlag "dunique-increment"
+ (intSuffix (\n d -> d{ uniqueIncrement = n }))
+
------ Profiling ----------------------------------------------------
-- OLD profiling flags
More information about the ghc-commits
mailing list