diff options
author | Ben Gamari <ben@smart-cactus.org> | 2015-10-29 15:42:39 +0100 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2015-10-29 16:14:33 +0100 |
commit | 40e6214c06bc197dbdfcf9f7345dad1ad271922b (patch) | |
tree | 3c25529a062e94493d874349d55f71cfaa3e6dea /compiler/main/DynFlags.hs | |
parent | d25fa862b82de644403cb9710c1f011eeb767d33 (diff) | |
download | haskell-40e6214c06bc197dbdfcf9f7345dad1ad271922b.tar.gz |
DynFlags: Add (another) missing hunk from D1360
What a disaster this merge was.
Diffstat (limited to 'compiler/main/DynFlags.hs')
-rw-r--r-- | compiler/main/DynFlags.hs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs index 320a11ee44..8e5ba6a925 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 |