|
From: <sv...@va...> - 2005-06-23 22:37:59
|
Author: sewardj
Date: 2005-06-23 23:37:56 +0100 (Thu, 23 Jun 2005)
New Revision: 4007
Log:
Disable debug printing by default so we have any hope of getting
regtest passes on ppc32-linux.
Modified:
trunk/coregrind/m_main.c
Modified: trunk/coregrind/m_main.c
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- trunk/coregrind/m_main.c 2005-06-23 21:37:47 UTC (rev 4006)
+++ trunk/coregrind/m_main.c 2005-06-23 22:37:56 UTC (rev 4007)
@@ -195,12 +195,13 @@
case AT_DCACHEBSIZE:
case AT_ICACHEBSIZE:
case AT_UCACHEBSIZE:
- VG_(debugLog)(0, "main", "PPC32 cache line size %lu (type %lu)\n",=20
- auxv->u.a_val, auxv->a_type );
+ VG_(debugLog)(1, "main", "PPC32 cache line size %u (type %u)\n"=
,=20
+ (UInt)auxv->u.a_val, (UInt)auxv->a_type );
if (auxv->u.a_val)
VG_(cache_line_size) =3D auxv->u.a_val;
- // XXX: Nasty hack to stop use of badly implemented cache-control instn=
s in vex
- auxv->u.a_val =3D 0;
+ // XXX: Nasty hack to stop use of badly implemented
+ // cache-control instns in vex (dcbz)
+ auxv->u.a_val =3D 0;
break;
=20
case AT_HWCAP:
|