diff options
author | Ian Lynagh <ian@well-typed.com> | 2012-09-03 17:25:47 +0100 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2012-09-03 17:25:47 +0100 |
commit | da3362247b72531e1355748d1fdbc2c954a3f300 (patch) | |
tree | 137c904594794fcb68587a1a4c0b697a7572455c /compiler/codeGen/StgCmmClosure.hs | |
parent | 4f15146c1772ffe1b9d59df3239081f72f423801 (diff) | |
download | haskell-da3362247b72531e1355748d1fdbc2c954a3f300.tar.gz |
Remove doingTickyProfiling
It's now just 'dopt Opt_Ticky'
Diffstat (limited to 'compiler/codeGen/StgCmmClosure.hs')
-rw-r--r-- | compiler/codeGen/StgCmmClosure.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/codeGen/StgCmmClosure.hs b/compiler/codeGen/StgCmmClosure.hs index 2afcb6a8c7..b944208a07 100644 --- a/compiler/codeGen/StgCmmClosure.hs +++ b/compiler/codeGen/StgCmmClosure.hs @@ -498,7 +498,7 @@ getCallMethod dflags name caf (LFThunk _ _ updatable std_form_info is_fun) n_arg -- is the fast-entry code] -- Since is_fun is False, we are *definitely* looking at a data value - | updatable || doingTickyProfiling dflags -- to catch double entry + | updatable || dopt Opt_Ticky dflags -- to catch double entry {- OLD: || opt_SMP I decided to remove this, because in SMP mode it doesn't matter if we enter the same thunk multiple times, so the optimisation |