runtime: Fix cast error in print.c on 32-bit systems.
authorIan Lance Taylor <ian@gcc.gnu.org>
Fri, 25 May 2012 18:22:01 +0000 (18:22 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Fri, 25 May 2012 18:22:01 +0000 (18:22 +0000)
From-SVN: r187889

libgo/runtime/print.c

index 3eafeb7..c24304e 100644 (file)
@@ -136,7 +136,7 @@ void
 runtime_printpc(void *p __attribute__ ((unused)))
 {
        runtime_prints("PC=");
-       runtime_printhex((uint64)runtime_getcallerpc(p));
+       runtime_printhex((uint64)(uintptr)runtime_getcallerpc(p));
 }
 
 void