|
From: <sv...@va...> - 2009-01-30 18:32:00
|
Author: bart
Date: 2009-01-30 18:31:54 +0000 (Fri, 30 Jan 2009)
New Revision: 9092
Log:
Removed mandatory redirections for DRD since these made DRD impossible to use on openSUSE 10.3 ppc.
Modified:
trunk/coregrind/m_redir.c
Modified: trunk/coregrind/m_redir.c
===================================================================
--- trunk/coregrind/m_redir.c 2009-01-30 17:52:39 UTC (rev 9091)
+++ trunk/coregrind/m_redir.c 2009-01-30 18:31:54 UTC (rev 9092)
@@ -906,15 +906,6 @@
NULL /* not mandatory - so why bother at all? */
/* glibc-2.6.1 (openSUSE 10.3, ppc32) seems fine without it */
);
- } else if (0 == VG_(strcmp)("drd", VG_(details).name)) {
- /* Only continue if symbol information in ld.so.1 is present, */
- /* because otherwise drd's suppression patterns on ld.so do */
- /* not have any effect. */
- add_hardwired_spec(
- "ld.so.1", "strlen",
- (Addr)(&VG_(ppc32_linux_REDIR_FOR_strlen)),
- croakage
- );
}
}
@@ -940,16 +931,6 @@
NULL /* not mandatory - so why bother at all? */
/* glibc-2.5 (FC6, ppc64) seems fine without it */
);
-
- } else if (0 == VG_(strcmp)("drd", VG_(details).name)) {
- /* Only continue if symbol information in ld64.so.1 is present, */
- /* because otherwise drd's suppression patterns on ld.so do */
- /* not have any effect. */
- add_hardwired_spec(
- "ld64.so.1", "strlen",
- (Addr)VG_(fnptr_to_fnentry)( &VG_(ppc64_linux_REDIR_FOR_strlen) ),
- croakage
- );
}
}
|