]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
document
authorNicholas Nethercote <njn@valgrind.org>
Thu, 17 Nov 2005 19:32:59 +0000 (19:32 +0000)
committerNicholas Nethercote <njn@valgrind.org>
Thu, 17 Nov 2005 19:32:59 +0000 (19:32 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5175

cachegrind/cg-ppc32.c

index a434ab3c9e2ce9404b111a0dcfa7368504dbccfa..d988141bcda65462380a8781938e34a5dbf9725a 100644 (file)
@@ -43,7 +43,12 @@ void VG_(configure_caches)(cache_t* I1c, cache_t* D1c, cache_t* L2c,
    *D1c = (cache_t) {  65536, 2, 64 };
    *L2c = (cache_t) { 262144, 8, 64 };
 
-   // Warn if config not completely specified from cmd line.
+   // Warn if config not completely specified from cmd line.  Note that
+   // this message is slightly different from the one we give on x86/AMD64
+   // when auto-detection fails;  this lets us filter out this one (which is
+   // not important) in the regression test suite without filtering the
+   // x86/AMD64 one (which we want to see if it ever occurs in the
+   // regression test suite).
    if (!all_caches_clo_defined) {
       VG_(message)(Vg_DebugMsg, 
                    "Warning: Cannot auto-detect cache config on PPC32, using one "