|
From: <sv...@va...> - 2008-05-18 06:40:13
|
Author: bart
Date: 2008-05-18 07:40:18 +0100 (Sun, 18 May 2008)
New Revision: 8100
Log:
Removed ppc32/ppc64 debug print statements.
Modified:
branches/CROSS_COMPILATION/coregrind/m_debuginfo/d3basics.c
Modified: branches/CROSS_COMPILATION/coregrind/m_debuginfo/d3basics.c
===================================================================
--- branches/CROSS_COMPILATION/coregrind/m_debuginfo/d3basics.c 2008-05-17 15:22:27 UTC (rev 8099)
+++ branches/CROSS_COMPILATION/coregrind/m_debuginfo/d3basics.c 2008-05-18 06:40:18 UTC (rev 8100)
@@ -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)
|