diff options
author | Ian Lynagh <ian@well-typed.com> | 2013-04-25 21:31:34 +0100 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2013-04-25 22:21:26 +0100 |
commit | c0228317d2d8baa11bee8ce60b54ec8928ff0c0c (patch) | |
tree | 86bd55f2e66d05e0c9f056896c9be133cfb5c804 /compiler/main/StaticFlags.hs | |
parent | c9e7159b53e88790340b70ca0150178fe6c5704a (diff) | |
download | haskell-c0228317d2d8baa11bee8ce60b54ec8928ff0c0c.tar.gz |
Update the isStaticFlag predicate
-fspec-inline-join-points was removed in Jan 2010:
99f41975ae61fc919638aa389199b32742332eff
-fno-hi-version-check was removed in Nov 2003:
98744cef7b82e7eefbb1c6f1d8b9e28c415939c4
-dno-black-holing was removed in Aug 2011:
1c2f89535394958f75cfb15c8c5e0433a20953ed
-fruntime-types was removed in Apr 2008:
8d6bc9bf51829ea04da5f599b84114ef220f0a19
-fhardwire-lib-paths was removed in Jan 2008:
1b98179e0faf8c1ddf79c12827b24d4b7979b83e
Diffstat (limited to 'compiler/main/StaticFlags.hs')
-rw-r--r-- | compiler/main/StaticFlags.hs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/compiler/main/StaticFlags.hs b/compiler/main/StaticFlags.hs index 064154d981..cbdfea682d 100644 --- a/compiler/main/StaticFlags.hs +++ b/compiler/main/StaticFlags.hs @@ -144,14 +144,9 @@ isStaticFlag :: String -> Bool isStaticFlag f = f `elem` [ "fdicts-strict", - "fspec-inline-join-points", - "fno-hi-version-check", - "dno-black-holing", "fno-state-hack", - "fruntime-types", "fno-opt-coercion", "fno-flat-cache", - "fhardwire-lib-paths", "fcpr-off" ] |