diff options
-rw-r--r-- | compiler/codeGen/StgCmmProf.hs | 3 | ||||
-rw-r--r-- | 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 c1b149dba2..434d7b50de 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 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; |