diff options
Diffstat (limited to 'compiler/profiling/ProfInit.hs')
-rw-r--r-- | compiler/profiling/ProfInit.hs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/compiler/profiling/ProfInit.hs b/compiler/profiling/ProfInit.hs index 6934a079b5..7e223f80e9 100644 --- a/compiler/profiling/ProfInit.hs +++ b/compiler/profiling/ProfInit.hs @@ -11,7 +11,6 @@ module ProfInit (profilingInitCode) where import CLabel import CostCentre import Outputable -import Platform import StaticFlags import FastString import Module @@ -22,8 +21,8 @@ import Module -- We must produce declarations for the cost-centres defined in this -- module; -profilingInitCode :: Platform -> Module -> CollectedCCs -> SDoc -profilingInitCode _ this_mod (local_CCs, ___extern_CCs, singleton_CCSs) +profilingInitCode :: Module -> CollectedCCs -> SDoc +profilingInitCode this_mod (local_CCs, ___extern_CCs, singleton_CCSs) | not opt_SccProfilingOn = empty | otherwise = vcat |