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.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5995 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/cachegrind/cg-amd64.c b/cachegrind/cg-amd64.c
index cb46372..45959a7 100644
--- a/cachegrind/cg-amd64.c
+++ b/cachegrind/cg-amd64.c
@@ -43,10 +43,10 @@
static void micro_ops_warn(Int actual_size, Int used_size, Int line_size)
{
VG_(message)(Vg_DebugMsg,
- "warning: Pentium with %d K micro-op instruction trace cache",
+ "warning: Pentium 4 with %d KB micro-op instruction trace cache",
actual_size);
VG_(message)(Vg_DebugMsg,
- " Simulating a %d KB cache with %d B lines",
+ " Simulating a %d KB I-cache with %d B lines",
used_size, line_size);
}