[commit: ghc] master: Remove all mentions of IND_OLDGEN outside of docs/rts (85e6997)

git at git.haskell.org git at git.haskell.org
Tue Mar 29 14:50:48 UTC 2016


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/85e699729491d3afb921158f905d353c7d40517b/ghc

>---------------------------------------------------------------

commit 85e699729491d3afb921158f905d353c7d40517b
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


>---------------------------------------------------------------

85e699729491d3afb921158f905d353c7d40517b
 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