diff options
author | Joachim Breitner <mail@joachim-breitner.de> | 2016-03-23 16:20:36 +0100 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-03-24 10:53:27 +0100 |
commit | 6c2c853b11fe25c106469da7b105e2be596c17de (patch) | |
tree | 544f9d10d2b8f441739e02a6c6e2d71f262dd159 /rts | |
parent | 03a1bb4d010f94bed233ca261bf44e00c7bd9878 (diff) | |
download | haskell-6c2c853b11fe25c106469da7b105e2be596c17de.tar.gz |
Various ticky-related work
this Diff contains small, self-contained changes as I work towards
fixing #10613. It is mostly created to let harbormaster do its job, but
feedback is welcome as well.
Please do not merge this via arc; I’d like to push the individual
patches as layed out here. I might push mostly trivial ones even without
review, as long as the build passes.
Reviewers: austin, bgamari
Reviewed By: bgamari
Subscribers: thomie
Differential Revision: https://phabricator.haskell.org/D2014
Diffstat (limited to 'rts')
-rw-r--r-- | rts/sm/Scav.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/sm/Scav.c b/rts/sm/Scav.c index 953f055d57..abb77261e5 100644 --- a/rts/sm/Scav.c +++ b/rts/sm/Scav.c @@ -1533,7 +1533,7 @@ scavenge_one(StgPtr p) } else { size = gen->scan - start; } - debugBelch("evac IND_OLDGEN: %ld bytes", size * sizeof(W_)); + debugBelch("evac IND: %ld bytes", size * sizeof(W_)); } #endif break; |