|
From: <sv...@va...> - 2007-10-04 21:36:39
|
Author: dirk
Date: 2007-10-04 22:36:40 +0100 (Thu, 04 Oct 2007)
New Revision: 6948
Log:
readd right adjustment.
Modified:
trunk/coregrind/m_stacktrace.c
Modified: trunk/coregrind/m_stacktrace.c
===================================================================
--- trunk/coregrind/m_stacktrace.c 2007-10-04 21:35:21 UTC (rev 6947)
+++ trunk/coregrind/m_stacktrace.c 2007-10-04 21:36:40 UTC (rev 6948)
@@ -158,7 +158,7 @@
fp = (((UWord*)fp)[0]);
ips[i++] = ip;
if (debug)
- VG_(printf)(" ipsF[%d]=%p\n", i-1, ips[i-1]);
+ VG_(printf)(" ipsF[%d]=0x%08lx\n", i-1, ips[i-1]);
ip = ip - 1;
continue;
}
@@ -168,7 +168,7 @@
if ( VG_(use_CF_info)( &ip, &sp, &fp, fp_min, fp_max ) ) {
ips[i++] = ip;
if (debug)
- VG_(printf)(" ipsC[%d]=%p\n", i-1, ips[i-1]);
+ VG_(printf)(" ipsC[%d]=0x%08lx\n", i-1, ips[i-1]);
ip = ip - 1;
continue;
}
|