]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Clarify wording.
authorFlorian Krohm <florian@eich-krohm.de>
Wed, 11 Sep 2013 18:43:26 +0000 (18:43 +0000)
committerFlorian Krohm <florian@eich-krohm.de>
Wed, 11 Sep 2013 18:43:26 +0000 (18:43 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13541

coregrind/m_initimg/initimg-linux.c
coregrind/m_machine.c

index 3f49de95fa30821e8774e6c8ede5fa51eb9875df..1f47a357f7f728371ffd966517d5efa7ac771656 100644 (file)
@@ -713,7 +713,7 @@ Addr setup_client_stack( void*  init_sp,
             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 @@ Addr setup_client_stack( void*  init_sp,
             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
index 2fd5f07ffb3062dd62ce3a3471cd7a657a4ce536..2f9869dc355549d567fa663462a9b7b699bc0a9e 100644 (file)
@@ -1518,7 +1518,7 @@ Bool VG_(machine_get_hwcaps)( void )
 #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 @@ void VG_(machine_ppc32_set_clszB)( Int szB )
 #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 )
 {