|
From: <sv...@va...> - 2006-08-01 17:26:44
|
Author: sewardj
Date: 2006-08-01 18:26:38 +0100 (Tue, 01 Aug 2006)
New Revision: 5995
Log:
Print the same text as micro_ops_warn on x86; doing otherwise defeats the
stderr filter for said text and so makes the test fail on Pentium-4's in
64-bit mode.
Modified:
trunk/cachegrind/cg-amd64.c
Modified: trunk/cachegrind/cg-amd64.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/cachegrind/cg-amd64.c 2006-07-29 09:00:25 UTC (rev 5994)
+++ trunk/cachegrind/cg-amd64.c 2006-08-01 17:26:38 UTC (rev 5995)
@@ -43,10 +43,10 @@
static void micro_ops_warn(Int actual_size, Int used_size, Int line_size=
)
{
VG_(message)(Vg_DebugMsg,=20
- "warning: Pentium with %d K micro-op instruction trace cache",=20
+ "warning: Pentium 4 with %d KB micro-op instruction trace cache",=
=20
actual_size);
VG_(message)(Vg_DebugMsg,=20
- " Simulating a %d KB cache with %d B lines",=20
+ " Simulating a %d KB I-cache with %d B lines",=20
used_size, line_size);
}
=20
|