summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorSimon Marlow <marlowsd@gmail.com>2014-06-08 10:24:25 +0100
committerSimon Marlow <marlowsd@gmail.com>2014-06-08 11:21:12 +0100
commit70f58ebfefd47b724a3b0aa3aca50442f937e6eb (patch)
tree22ed3f8a5634a4bcbc32d7bd7aff9d5fabb668e1 /compiler
parent9fd507e5758f4141ac2619f0db57136bcab035c6 (diff)
downloadhaskell-70f58ebfefd47b724a3b0aa3aca50442f937e6eb.tar.gz
Remove unused --run-cps/--run-cpsz options
Diffstat (limited to 'compiler')
-rw-r--r--compiler/main/DynFlags.hs4
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs
index 0c493863b4..7222af3d89 100644
--- a/compiler/main/DynFlags.hs
+++ b/compiler/main/DynFlags.hs
@@ -406,8 +406,6 @@ data GeneralFlag
| Opt_SuppressUniques
-- temporary flags
- | Opt_RunCPS
- | Opt_RunCPSZ
| Opt_AutoLinkPackages
| Opt_ImplicitImportQualified
@@ -2668,8 +2666,6 @@ fFlags = [
( "break-on-error", Opt_BreakOnError, nop ),
( "print-evld-with-show", Opt_PrintEvldWithShow, nop ),
( "print-bind-contents", Opt_PrintBindContents, nop ),
- ( "run-cps", Opt_RunCPS, nop ),
- ( "run-cpsz", Opt_RunCPSZ, nop ),
( "vectorise", Opt_Vectorise, nop ),
( "vectorisation-avoidance", Opt_VectorisationAvoidance, nop ),
( "regs-graph", Opt_RegsGraph, nop ),