|
From: <sv...@va...> - 2013-01-31 10:39:18
|
sewardj 2013-01-31 10:39:07 +0000 (Thu, 31 Jan 2013)
New Revision: 13283
Log:
Line-wrap a comment and put in some #undefs. Non-functional change.
Modified files:
trunk/coregrind/m_stacktrace.c
Modified: trunk/coregrind/m_stacktrace.c (+7 -2)
===================================================================
--- trunk/coregrind/m_stacktrace.c 2013-01-30 23:53:59 +00:00 (rev 13282)
+++ trunk/coregrind/m_stacktrace.c 2013-01-31 10:39:07 +00:00 (rev 13283)
@@ -182,8 +182,8 @@
D3UnwindRegs fpverif_uregs; // result of CF unwind for a check reason.
Addr xip_verified = 0; // xip for which we have calculated fpverif_uregs
// 0 assigned to silence false positive -Wuninitialized warning
- // This is a false positive as xip_verified is assigned when xip_verif > CFUNWIND
- // and only used if xip_verif > CFUNWIND.
+ // This is a false positive as xip_verified is assigned when
+ // xip_verif > CFUNWIND and only used if xip_verif > CFUNWIND.
D3UnwindRegs uregs;
uregs.xip = (Addr)startRegs->r_pc;
@@ -438,6 +438,11 @@
return n_found;
}
+#undef N_FP_CF_VERIF
+#undef FPUNWIND
+#undef NOINFO
+#undef CFUNWIND
+
#endif
/* ----------------------- amd64 ------------------------ */
|