diff options
author | Ben Gamari <ben@smart-cactus.org> | 2015-10-27 16:17:46 +0100 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2015-10-27 16:26:00 +0100 |
commit | 166c5972fc7269b6a7802cd68ab04d86affbb879 (patch) | |
tree | c3c2f9bde791de8cd5dd1244c691f2c4ec62689b /compiler/main/DynFlags.hs | |
parent | ffcdd84f86727c1621be0a0e522eb6a3a64e479f (diff) | |
download | haskell-166c5972fc7269b6a7802cd68ab04d86affbb879.tar.gz |
DynFlags: Yet one more fix
Diffstat (limited to 'compiler/main/DynFlags.hs')
-rw-r--r-- | compiler/main/DynFlags.hs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs index 97b15d389f..6f5fa6a873 100644 --- a/compiler/main/DynFlags.hs +++ b/compiler/main/DynFlags.hs @@ -1567,6 +1567,9 @@ defaultDynFlags mySettings = maxInlineMemcpyInsns = 32, maxInlineMemsetInsns = 32, + initialUnique = 0, + uniqueIncrement = 1, + reverseErrors = False } |