From: Julian Seward Date: Thu, 23 Jun 2005 22:37:56 +0000 (+0000) Subject: Disable debug printing by default so we have any hope of getting X-Git-Tag: svn/VALGRIND_3_0_0~311 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=de2a4b30fd1dddab1a315625888fdb8def7bd616;p=thirdparty%2Fvalgrind.git Disable debug printing by default so we have any hope of getting regtest passes on ppc32-linux. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4007 --- diff --git a/coregrind/m_main.c b/coregrind/m_main.c index e4f5f35cdb..242818e1e3 100644 --- a/coregrind/m_main.c +++ b/coregrind/m_main.c @@ -195,12 +195,13 @@ static int scan_auxv(void* init_sp) case AT_DCACHEBSIZE: case AT_ICACHEBSIZE: case AT_UCACHEBSIZE: - VG_(debugLog)(0, "main", "PPC32 cache line size %lu (type %lu)\n", - auxv->u.a_val, auxv->a_type ); + VG_(debugLog)(1, "main", "PPC32 cache line size %u (type %u)\n", + (UInt)auxv->u.a_val, (UInt)auxv->a_type ); if (auxv->u.a_val) VG_(cache_line_size) = auxv->u.a_val; - // XXX: Nasty hack to stop use of badly implemented cache-control instns in vex - auxv->u.a_val = 0; + // XXX: Nasty hack to stop use of badly implemented + // cache-control instns in vex (dcbz) + auxv->u.a_val = 0; break; case AT_HWCAP: