summaryrefslogtreecommitdiff
path: root/src/pkg/runtime/sys_power64x.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/runtime/sys_power64x.c')
-rw-r--r--src/pkg/runtime/sys_power64x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/runtime/sys_power64x.c b/src/pkg/runtime/sys_power64x.c
index ed8900c45..79d976255 100644
--- a/src/pkg/runtime/sys_power64x.c
+++ b/src/pkg/runtime/sys_power64x.c
@@ -28,7 +28,7 @@ runtime·rewindmorestack(Gobuf *gobuf)
inst = *(uint32*)gobuf->pc;
if((gobuf->pc&3) == 0 && (inst>>24) == 0x4b && (inst&3) == 0) {
- runtime·printf("runtime: rewind pc=%p to pc=%p\n", gobuf->pc, gobuf->pc + ((int32)(inst<<8)>>8));
+ //runtime·printf("runtime: rewind pc=%p to pc=%p\n", gobuf->pc, gobuf->pc + ((int32)(inst<<8)>>8));
gobuf->pc += (int32)(inst<<8)>>8;
return;
}