diff options
-rw-r--r-- | rts/LdvProfile.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/rts/LdvProfile.h b/rts/LdvProfile.h index b4418046ba..d58c5fbf57 100644 --- a/rts/LdvProfile.h +++ b/rts/LdvProfile.h @@ -18,16 +18,16 @@ RTS_PRIVATE void LdvCensusForDead ( nat ); RTS_PRIVATE void LdvCensusKillAll ( void ); // Creates a 0-filled slop of size 'howManyBackwards' backwards from the -// address 'from'. +// address 'from'. // -// Invoked when: +// Invoked when: // 1) Hp is incremented and exceeds HpLim (in Updates.hc). // 2) copypart() is called (in GC.c). -#define LDV_FILL_SLOP(from, howMany) \ - if (era > 0) { \ - int i; \ - for (i = 0;i < (howMany); i++) \ - ((StgWord *)(from))[i] = 0; \ +#define LDV_FILL_SLOP(from, howMany) \ + if (era > 0) { \ + int i; \ + for (i = 0;i < (howMany); i++) \ + ((StgWord *)(from))[i] = 0; \ } // Informs the LDV profiler that closure c has just been evacuated. |