diff options
author | Nick Clifton <nickc@redhat.com> | 2003-01-02 10:26:41 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2003-01-02 10:26:41 +0000 |
commit | 1c43e6e58a36981a75ffd2cff92335759765f966 (patch) | |
tree | 3a8ddf689675f271b3e9944cf45b99060cfbf782 /ld | |
parent | 396a24671935a40f9b9681416e8837488fefcea2 (diff) | |
download | gdb-1c43e6e58a36981a75ffd2cff92335759765f966.zip gdb-1c43e6e58a36981a75ffd2cff92335759765f966.tar.gz gdb-1c43e6e58a36981a75ffd2cff92335759765f966.tar.bz2 |
Add do_pseudo_reloc and _pei386_runtime_relocator to the exclude list.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/pe-dll.c | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 0d568a9..4f2e7f2 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2003-01-02 Charles Wilson <cwilson@ece.gatech.edu> + + * pe-dll.c (autofilter_symbollist): Add do_pseudo_reloc + and _pei386_runtime_relocator to the exclude list. + 2003-01-01 Kazu Hirata <kazu@cs.umass.edu> * ldfile.c: Fix comment typos. diff --git a/ld/pe-dll.c b/ld/pe-dll.c index 7617337..cac0dbe 100644 --- a/ld/pe-dll.c +++ b/ld/pe-dll.c @@ -1,5 +1,5 @@ /* Routines to help build PEI-format DLLs (Win32 etc) - Copyright 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. + Copyright 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. Written by DJ Delorie <dj@cygnus.com> This file is part of GLD, the Gnu Linker. @@ -223,6 +223,8 @@ static autofilter_entry_type autofilter_symbollist[] = { "_cygwin_crt0_common@8", 21 }, { "_cygwin_noncygwin_dll_entry@12", 30 }, { "impure_ptr", 10 }, + { "_pei386_runtime_relocator", 25 }, + { "do_pseudo_reloc", 15 }, { NULL, 0 } }; |