From: Bart Van Assche Date: Sun, 25 May 2008 16:01:52 +0000 (+0000) Subject: Removed ppc debug print statements. X-Git-Tag: svn/VALGRIND_3_4_0~559 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=20a71037ce1789fc29a9951d58f037a0e85e1296;p=thirdparty%2Fvalgrind.git Removed ppc debug print statements. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8125 --- diff --git a/coregrind/m_debuginfo/d3basics.c b/coregrind/m_debuginfo/d3basics.c index 616f21f7db..020407f1b2 100644 --- a/coregrind/m_debuginfo/d3basics.c +++ b/coregrind/m_debuginfo/d3basics.c @@ -384,12 +384,10 @@ static Bool get_Dwarf_Reg( /*OUT*/Addr* a, Word regno, RegSummary* regs ) 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)