|
From: <sv...@va...> - 2008-05-25 16:01:49
|
Author: bart
Date: 2008-05-25 17:01:52 +0100 (Sun, 25 May 2008)
New Revision: 8125
Log:
Removed ppc debug print statements.
Modified:
trunk/coregrind/m_debuginfo/d3basics.c
Modified: trunk/coregrind/m_debuginfo/d3basics.c
===================================================================
--- trunk/coregrind/m_debuginfo/d3basics.c 2008-05-25 16:01:03 UTC (rev 8124)
+++ trunk/coregrind/m_debuginfo/d3basics.c 2008-05-25 16:01:52 UTC (rev 8125)
@@ -384,12 +384,10 @@
if (regno == 4/*ESP*/) { *a = regs->sp; return True; }
# elif defined(VGP_ppc32_linux)
if (regno == 1/*SP*/) { *a = regs->sp; return True; }
- VG_(printf)("get_Dwarf_Reg(ppc32-linux)(%ld)\n", regno);
if (regno == 31) return False;
vg_assert(0);
# elif defined(VGP_ppc64_linux)
if (regno == 1/*SP*/) { *a = regs->sp; return True; }
- VG_(printf)("get_Dwarf_Reg(ppc64-linux)(%ld)\n", regno);
if (regno == 31) return False;
vg_assert(0);
# elif defined(VGP_ppc32_aix5) || defined(VGP_ppc64_aix5)
|