[commit: ghc] wip/T10613: Remove all mentions of IND_OLDGEN outside of docs/rts (5d7c67c)
git at git.haskell.org
git at git.haskell.org
Wed Mar 23 13:48:16 UTC 2016
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/T10613
Link : http://ghc.haskell.org/trac/ghc/changeset/5d7c67ca2d4fe9c21ef9b029f7ba5e458181c175/ghc
>---------------------------------------------------------------
commit 5d7c67ca2d4fe9c21ef9b029f7ba5e458181c175
Author: Joachim Breitner <mail at joachim-breitner.de>
Date: Fri Jan 22 10:31:25 2016 +0100
Remove all mentions of IND_OLDGEN outside of docs/rts
>---------------------------------------------------------------
5d7c67ca2d4fe9c21ef9b029f7ba5e458181c175
compiler/codeGen/StgCmmProf.hs | 3 +--
rts/sm/Scav.c | 2 +-
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/compiler/codeGen/StgCmmProf.hs b/compiler/codeGen/StgCmmProf.hs
index c1b149d..434d7b5 100644
--- a/compiler/codeGen/StgCmmProf.hs
+++ b/compiler/codeGen/StgCmmProf.hs
@@ -328,8 +328,7 @@ ldvRecordCreate closure = do
--
-- | Called when a closure is entered, marks the closure as having
-- been "used". The closure is not an "inherently used" one. The
--- closure is not @IND@ or @IND_OLDGEN@ because neither is considered
--- for LDV profiling.
+-- closure is not @IND@ because that is not considered for LDV profiling.
--
ldvEnterClosure :: ClosureInfo -> CmmReg -> FCode ()
ldvEnterClosure closure_info node_reg = do
diff --git a/rts/sm/Scav.c b/rts/sm/Scav.c
index 953f055..abb7726 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;
More information about the ghc-commits
mailing list