[commit: ghc] master: Fix Win32 x86 build validation after D2756 (9cb4a13)

git at git.haskell.org git at git.haskell.org
Tue Dec 13 21:24:04 UTC 2016


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

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/9cb4a130a5ed16ed95b8cab90cefe23dbae9a337/ghc

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

commit 9cb4a130a5ed16ed95b8cab90cefe23dbae9a337
Author: Tamar Christina <tamar at zhox.com>
Date:   Tue Dec 13 14:54:09 2016 -0500

    Fix Win32 x86 build validation after D2756
    
    Test Plan: ./validate
    
    Reviewers: austin, bgamari, erikd, simonmar
    
    Reviewed By: simonmar
    
    Subscribers: thomie
    
    Differential Revision: https://phabricator.haskell.org/D2825


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

9cb4a130a5ed16ed95b8cab90cefe23dbae9a337
 rts/Stats.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rts/Stats.c b/rts/Stats.c
index 767a36f..217bace 100644
--- a/rts/Stats.c
+++ b/rts/Stats.c
@@ -398,7 +398,7 @@ stat_endGC (Capability *cap, gc_thread *gct,
         if (RtsFlags.GcFlags.giveStats == VERBOSE_GC_STATS) {
             W_ faults = getPageFaults();
 
-            statsPrintf("%9" FMT_Word " %9" FMT_Word " %9" FMT_Word,
+            statsPrintf("%9" FMT_Word64 " %9" FMT_Word64 " %9" FMT_Word64,
                         stats.gc.allocated_bytes, stats.gc.copied_bytes,
                         stats.gc.live_bytes);
 



More information about the ghc-commits mailing list