]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Clarify the P4 warning message a bit.
authorJulian Seward <jseward@acm.org>
Wed, 19 Oct 2005 23:49:45 +0000 (23:49 +0000)
committerJulian Seward <jseward@acm.org>
Wed, 19 Oct 2005 23:49:45 +0000 (23:49 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4951

cachegrind/cg-x86.c

index a76ea7f9fbfec1e185eb7647b9627b48190a0761..11aac152e66ce2f6b3942c20badec58ba7e03901 100644 (file)
 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);
 }