diff options
author | cerion <cerion@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2005-12-23 00:57:03 +0000 |
---|---|---|
committer | cerion <cerion@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2005-12-23 00:57:03 +0000 |
commit | 1f0d814045aba94e01e62e04e968ca8b970b3d44 (patch) | |
tree | f0d02756536c602da2f4919bec1ce95b7b550453 /coregrind/m_transtab.c | |
parent | 1bc8210aff6581dd3b48b72b6c27fdbbc6669e70 (diff) |
Track changes to PPC naming convention - VEX r1504
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5416 a5019735-40e9-0310-863c-91ae7b9d1cf9
Diffstat (limited to 'coregrind/m_transtab.c')
-rw-r--r-- | coregrind/m_transtab.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coregrind/m_transtab.c b/coregrind/m_transtab.c index 5b691944..31705a76 100644 --- a/coregrind/m_transtab.c +++ b/coregrind/m_transtab.c @@ -31,7 +31,7 @@ #include "pub_core_basics.h" #include "pub_core_debuglog.h" -#include "pub_core_machine.h" // ppc32: VG_(cache_line_size_ppc32) +#include "pub_core_machine.h" // For VG(machine_get_VexArchInfo) #include "pub_core_libcbase.h" #include "pub_core_libcassert.h" #include "pub_core_libcprint.h" @@ -742,7 +742,7 @@ static void invalidate_icache ( void *ptr, Int nbytes ) VexArchInfo vai; VG_(machine_get_VexArchInfo)( NULL, &vai ); - cls = vai.ppc32_cache_line_szB; + cls = vai.ppc_cache_line_szB; /* Stay sane .. */ vg_assert(cls == 32 || cls == 128); |