diff options
author | Jason Merrill <merrill@gnu.org> | 1994-10-20 22:06:20 +0000 |
---|---|---|
committer | Jason Merrill <merrill@gnu.org> | 1994-10-20 22:06:20 +0000 |
commit | f85fd079f182f45f4824b0492a4c720e09ac0f27 (patch) | |
tree | ce34cea69dc8836931327833589c22541cca251c /gcc | |
parent | 0393b857b1c992c941ebb1219d2ed567212587d2 (diff) | |
download | gcc-f85fd079f182f45f4824b0492a4c720e09ac0f27.zip gcc-f85fd079f182f45f4824b0492a4c720e09ac0f27.tar.gz gcc-f85fd079f182f45f4824b0492a4c720e09ac0f27.tar.bz2 |
Back out previous change.
From-SVN: r8329
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/pa/pa-hpux.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/gcc/config/pa/pa-hpux.h b/gcc/config/pa/pa-hpux.h index 45ea1b2..66719e8 100644 --- a/gcc/config/pa/pa-hpux.h +++ b/gcc/config/pa/pa-hpux.h @@ -47,26 +47,3 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* hpux8 and later have C++ compatable include files, so do not pretend they are `extern "C"'. */ #define NO_IMPLICIT_EXTERN_C - -/* We need to use the vendor nm for collect, since GNU nm isn't clever - enough to distinguish between the duplicate symbols used with shared - libraries under HPUX. */ -#define REAL_NM_FILE_NAME "/bin/nm" - -/* To the hpux nm, -p means BSD-style output; we don't want that. */ -#define NM_FLAGS "-h" - -/* When dealing with shared libraries, the hpux ld can create duplicate - symbols. The fourth field of nm's output distinguishes between the real - one (type "code") and the fake one (type "entry"). */ -#define COLLECT_QUALIFY_MATCH \ -{ \ - char *p = end; \ - int cnt = 0; \ - for (; *p != '\n';) \ - if (*p++ == '|' \ - && ++cnt == 3) \ - break; \ - if (*p != 'c') \ - continue; \ -} |