diff options
author | Simon Marlow <marlowsd@gmail.com> | 2012-01-04 15:13:23 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2012-01-05 15:20:16 +0000 |
commit | 3478213ac422912df85308029e16c3f31b5a91d2 (patch) | |
tree | 3912df78d1b76f8e42d00ccc123942c4f9fb2256 /rts/Threads.c | |
parent | 6a9e521713cb4cbc3c49fa861aa936730c346e5e (diff) | |
download | haskell-3478213ac422912df85308029e16c3f31b5a91d2.tar.gz |
Rename the CCCS field of StgTSO so as not to conflict with the CCCS pseudo-register
Needed by #5357
Diffstat (limited to 'rts/Threads.c')
-rw-r--r-- | rts/Threads.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/Threads.c b/rts/Threads.c index 7e660d63f6..5488a320fe 100644 --- a/rts/Threads.c +++ b/rts/Threads.c @@ -113,7 +113,7 @@ createThread(Capability *cap, nat size) tso->trec = NO_TREC; #ifdef PROFILING - tso->prof.CCCS = CCS_MAIN; + tso->prof.cccs = CCS_MAIN; #endif // put a stop frame on the stack |