|
From: <sv...@va...> - 2013-09-11 18:43:37
|
Author: florian
Date: Wed Sep 11 18:43:26 2013
New Revision: 13541
Log:
Clarify wording.
Modified:
trunk/coregrind/m_initimg/initimg-linux.c
trunk/coregrind/m_machine.c
Modified: trunk/coregrind/m_initimg/initimg-linux.c
==============================================================================
--- trunk/coregrind/m_initimg/initimg-linux.c (original)
+++ trunk/coregrind/m_initimg/initimg-linux.c Wed Sep 11 18:43:26 2013
@@ -713,7 +713,7 @@
if (auxv->u.a_val > 0) {
VG_(machine_ppc32_set_clszB)( auxv->u.a_val );
VG_(debugLog)(2, "initimg",
- "PPC32 cache line size %u (type %u)\n",
+ "PPC32 icache line size %u (type %u)\n",
(UInt)auxv->u.a_val, (UInt)auxv->a_type );
}
# elif defined(VGP_ppc64_linux)
@@ -721,7 +721,7 @@
if (auxv->u.a_val > 0) {
VG_(machine_ppc64_set_clszB)( auxv->u.a_val );
VG_(debugLog)(2, "initimg",
- "PPC64 cache line size %u (type %u)\n",
+ "PPC64 icache line size %u (type %u)\n",
(UInt)auxv->u.a_val, (UInt)auxv->a_type );
}
# endif
Modified: trunk/coregrind/m_machine.c
==============================================================================
--- trunk/coregrind/m_machine.c (original)
+++ trunk/coregrind/m_machine.c Wed Sep 11 18:43:26 2013
@@ -1518,7 +1518,7 @@
#endif
}
-/* Notify host cpu cache line size. */
+/* Notify host cpu instruction cache line size. */
#if defined(VGA_ppc32)
void VG_(machine_ppc32_set_clszB)( Int szB )
{
@@ -1536,7 +1536,7 @@
#endif
-/* Notify host cpu cache line size. */
+/* Notify host cpu instruction cache line size. */
#if defined(VGA_ppc64)
void VG_(machine_ppc64_set_clszB)( Int szB )
{
|