|
From: <sv...@va...> - 2012-03-27 09:39:16
|
sewardj 2012-03-27 10:39:04 +0100 (Tue, 27 Mar 2012)
New Revision: 12463
Log:
Fix up debug printing -- no functional change.
Modified files:
trunk/coregrind/m_sigframe/sigframe-amd64-darwin.c
Modified: trunk/coregrind/m_sigframe/sigframe-amd64-darwin.c (+4 -2)
===================================================================
--- trunk/coregrind/m_sigframe/sigframe-amd64-darwin.c 2012-03-27 10:38:23 +01:00 (rev 12462)
+++ trunk/coregrind/m_sigframe/sigframe-amd64-darwin.c 2012-03-27 10:39:04 +01:00 (rev 12463)
@@ -184,7 +184,8 @@
if (VG_(clo_trace_signals))
VG_(message)(Vg_DebugMsg,
- "sigframe_create (thread %d): next EIP=%#lx, next ESP=%#lx",
+ "sigframe_create (thread %d): "
+ "next EIP=%#lx, next ESP=%#lx\n",
tid, (Addr)handler, (Addr)frame );
}
@@ -226,7 +227,8 @@
if (VG_(clo_trace_signals))
VG_(message)(Vg_DebugMsg,
- "sigframe_destroy (thread %d): valid magic; next RIP=%#llx",
+ "sigframe_destroy (thread %d): "
+ "valid magic; next RIP=%#llx\n",
tid, tst->arch.vex.guest_RIP);
VG_TRACK( die_mem_stack_signal,
|