diff options
author | Simon Marlow <marlowsd@gmail.com> | 2012-01-16 12:41:56 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2012-01-16 13:27:57 +0000 |
commit | 395ef284545bb5e7a57c180cc1f2a1b66fa30f37 (patch) | |
tree | f98b8e581c6122f6c86a2b3241c9bdf7550e6270 /compiler/main/StaticFlags.hs | |
parent | fac8ecbbafde17dd92439c41747223c43e9d2b80 (diff) | |
download | haskell-395ef284545bb5e7a57c180cc1f2a1b66fa30f37.tar.gz |
Revert "Add -faggressive-primops plus refactoring in CoreUtils" (#5780)
This reverts commit 601c983dd0bada6b49bdadd8f172fd4eacac4b0c.
Diffstat (limited to 'compiler/main/StaticFlags.hs')
-rw-r--r-- | compiler/main/StaticFlags.hs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/compiler/main/StaticFlags.hs b/compiler/main/StaticFlags.hs index 3c13e08372..c2f8674aa9 100644 --- a/compiler/main/StaticFlags.hs +++ b/compiler/main/StaticFlags.hs @@ -62,7 +62,6 @@ module StaticFlags ( opt_SimplExcessPrecision, opt_NoOptCoercion, opt_MaxWorkerArgs, - opt_AggressivePrimOps, -- Unfolding control opt_UF_CreationThreshold, @@ -322,11 +321,6 @@ opt_NoStateHack = lookUp (fsLit "-fno-state-hack") opt_CprOff :: Bool opt_CprOff = lookUp (fsLit "-fcpr-off") -- Switch off CPR analysis in the new demand analyser - -opt_AggressivePrimOps :: Bool -opt_AggressivePrimOps = lookUp (fsLit "-faggressive-primops") - -- See Note [Aggressive PrimOps] in PrimOp - opt_MaxWorkerArgs :: Int opt_MaxWorkerArgs = lookup_def_int "-fmax-worker-args" (10::Int) |