|
From: <sv...@va...> - 2005-11-18 15:10:38
|
Author: sewardj
Date: 2005-11-18 15:10:24 +0000 (Fri, 18 Nov 2005)
New Revision: 5190
Log:
Back out r5180 (sorry Josef). On consideration it just increases the dif=
ficulty
of testing the system properly.
Modified:
trunk/coregrind/m_redir.c
Modified: trunk/coregrind/m_redir.c
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- trunk/coregrind/m_redir.c 2005-11-18 14:59:00 UTC (rev 5189)
+++ trunk/coregrind/m_redir.c 2005-11-18 15:10:24 UTC (rev 5190)
@@ -377,19 +377,14 @@
=20
#elif defined(VGP_ppc32_linux)
=20
- /* these two drive memcheck nuts if not replaced, and unfortunately
- they need to be replaced right at the start, before the dynamic
- linker starts. */
- if (VG_(needs).malloc_replacement) {
- add_redirect_sym_to_addr(
- "soname:ld.so.1", "strlen",
- (Addr)&VG_(ppc32_linux_REDIR_FOR_strlen)
- ); =20
- add_redirect_sym_to_addr(
- "soname:ld.so.1", "strcmp",
- (Addr)&VG_(ppc32_linux_REDIR_FOR_strcmp)
- );
- }
+ add_redirect_sym_to_addr(
+ "soname:ld.so.1", "strlen",
+ (Addr)&VG_(ppc32_linux_REDIR_FOR_strlen)
+ ); =20
+ add_redirect_sym_to_addr(
+ "soname:ld.so.1", "strcmp",
+ (Addr)&VG_(ppc32_linux_REDIR_FOR_strcmp)
+ );
=20
#else
# error Unknown platform
|