diff options
author | andy@galois.com <unknown> | 2007-06-22 22:42:26 +0000 |
---|---|---|
committer | andy@galois.com <unknown> | 2007-06-22 22:42:26 +0000 |
commit | 6646a0226e5380a3ff088cfc59fb761d8265994b (patch) | |
tree | 7fe9ea9b1f7cfc27cc4dae5de5f6e72e2f3ba581 /compiler/main/StaticFlags.hs | |
parent | a171dac28baada2036577e7b0b4d7cc1c6836952 (diff) | |
download | haskell-6646a0226e5380a3ff088cfc59fb761d8265994b.tar.gz |
removing -fhpc-tracer from ghc, is subsumed by the GHC debugger
Diffstat (limited to 'compiler/main/StaticFlags.hs')
-rw-r--r-- | compiler/main/StaticFlags.hs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler/main/StaticFlags.hs b/compiler/main/StaticFlags.hs index 0d17af2dcb..546565c966 100644 --- a/compiler/main/StaticFlags.hs +++ b/compiler/main/StaticFlags.hs @@ -30,7 +30,6 @@ module StaticFlags ( -- Hpc opts opt_Hpc, - opt_Hpc_Tracer, -- language opts opt_DictsStrict, @@ -286,10 +285,7 @@ opt_SccProfilingOn = lookUp FSLIT("-fscc-profiling") opt_DoTickyProfiling = WayTicky `elem` (unsafePerformIO $ readIORef v_Ways) -- Hpc opts - opt_Hpc = lookUp FSLIT("-fhpc") - || opt_Hpc_Tracer -opt_Hpc_Tracer = lookUp FSLIT("-fhpc-tracer") -- language opts opt_DictsStrict = lookUp FSLIT("-fdicts-strict") |