summaryrefslogtreecommitdiff
path: root/compiler/codeGen/StgCmmClosure.hs
diff options
context:
space:
mode:
authorIan Lynagh <ian@well-typed.com>2012-09-03 17:25:47 +0100
committerIan Lynagh <ian@well-typed.com>2012-09-03 17:25:47 +0100
commitda3362247b72531e1355748d1fdbc2c954a3f300 (patch)
tree137c904594794fcb68587a1a4c0b697a7572455c /compiler/codeGen/StgCmmClosure.hs
parent4f15146c1772ffe1b9d59df3239081f72f423801 (diff)
downloadhaskell-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.hs2
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