X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=rts%2FLdvProfile.c;h=021ecf08467e8256671f759ec753cf05d4410870;hb=2a4cd5365060c75d474af1532cd3ebb8ddc94996;hp=799d418145c4bcd80c6f80d0b88625130cc5baca;hpb=5d52d9b64c21dcf77849866584744722f8121389;p=ghc-hetmet.git diff --git a/rts/LdvProfile.c b/rts/LdvProfile.c index 799d418..021ecf0 100644 --- a/rts/LdvProfile.c +++ b/rts/LdvProfile.c @@ -142,18 +142,16 @@ processHeapClosureForDead( StgClosure *c ) case BLACKHOLE: case BLOCKING_QUEUE: case IND_PERM: - case IND_OLDGEN_PERM: /* 'Ingore' cases */ - // Why can we ignore IND/IND_OLDGEN closures? We assume that + // Why can we ignore IND closures? We assume that // any census is preceded by a major garbage collection, which - // IND/IND_OLDGEN closures cannot survive. Therefore, it is no - // use considering IND/IND_OLDGEN closures in the meanwhile + // IND closures cannot survive. Therefore, it is no + // use considering IND closures in the meanwhile // because they will perish before the next census at any // rate. case IND: - case IND_OLDGEN: // Found a dead closure: record its size LDV_recordDead(c, size); return size;