[commit: ghc] master: [skip ci] rts: Detabify Proftimer.c (3d0e695)

git at git.haskell.org git at git.haskell.org
Tue Oct 21 21:51:33 UTC 2014


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

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/3d0e695e8ccd505066c806193f4c17487200fce3/ghc

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

commit 3d0e695e8ccd505066c806193f4c17487200fce3
Author: Austin Seipp <austin at well-typed.com>
Date:   Tue Oct 21 16:38:27 2014 -0500

    [skip ci] rts: Detabify Proftimer.c
    
    Signed-off-by: Austin Seipp <austin at well-typed.com>


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

3d0e695e8ccd505066c806193f4c17487200fce3
 rts/Proftimer.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/rts/Proftimer.c b/rts/Proftimer.c
index 6458f6e..d1736f7 100644
--- a/rts/Proftimer.c
+++ b/rts/Proftimer.c
@@ -52,7 +52,7 @@ startHeapProfTimer( void )
 {
     if (RtsFlags.ProfFlags.doHeapProfile &&
         RtsFlags.ProfFlags.heapProfileIntervalTicks > 0) {
-	do_heap_prof_ticks = rtsTrue;
+        do_heap_prof_ticks = rtsTrue;
     }
 }
 
@@ -82,10 +82,10 @@ handleProfTick(void)
 #endif
 
     if (do_heap_prof_ticks) {
-	ticks_to_heap_profile--;
-	if (ticks_to_heap_profile <= 0) {
+        ticks_to_heap_profile--;
+        if (ticks_to_heap_profile <= 0) {
             ticks_to_heap_profile = RtsFlags.ProfFlags.heapProfileIntervalTicks;
-	    performHeapProfile = rtsTrue;
-	}
+            performHeapProfile = rtsTrue;
+        }
     }
 }



More information about the ghc-commits mailing list