summaryrefslogtreecommitdiff
path: root/cachegrind
diff options
context:
space:
mode:
authornjn <njn@a5019735-40e9-0310-863c-91ae7b9d1cf9>2005-11-17 19:32:59 +0000
committernjn <njn@a5019735-40e9-0310-863c-91ae7b9d1cf9>2005-11-17 19:32:59 +0000
commit55c6e55612e91dc200103770a78ed4ff5b675f3c (patch)
treea51e55b29c355293805e34d102c81ce3091bd6a5 /cachegrind
parentb325ad15ec3a437d2ff7fc884ca99c8fe6fcd5dc (diff)
document
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5175 a5019735-40e9-0310-863c-91ae7b9d1cf9
Diffstat (limited to 'cachegrind')
-rw-r--r--cachegrind/cg-ppc32.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/cachegrind/cg-ppc32.c b/cachegrind/cg-ppc32.c
index a434ab3c..d988141b 100644
--- a/cachegrind/cg-ppc32.c
+++ b/cachegrind/cg-ppc32.c
@@ -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 "