diff options
author | Alan Modra <amodra@gmail.com> | 2000-07-11 03:42:41 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2000-07-11 03:42:41 +0000 |
commit | b71e277823b0b8e12b2f53f6fe77a9b401357407 (patch) | |
tree | 0cefb993b034dc906661c851e3f18ebbefb83164 /ld/emultempl/mipsecoff.em | |
parent | 1aea3bb85170ddc918bbaa9b394be92242576391 (diff) | |
download | gdb-b71e277823b0b8e12b2f53f6fe77a9b401357407.zip gdb-b71e277823b0b8e12b2f53f6fe77a9b401357407.tar.gz gdb-b71e277823b0b8e12b2f53f6fe77a9b401357407.tar.bz2 |
Remove some forward declarations in ldemul.h and ldfile.h, and
re-arrange header include order.
Fix shadowing warnings in ldlang.h
Fix compile errors in mpw-elfmips.c
Diffstat (limited to 'ld/emultempl/mipsecoff.em')
-rw-r--r-- | ld/emultempl/mipsecoff.em | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/ld/emultempl/mipsecoff.em b/ld/emultempl/mipsecoff.em index 61ab7d4..cb18e65 100644 --- a/ld/emultempl/mipsecoff.em +++ b/ld/emultempl/mipsecoff.em @@ -4,7 +4,7 @@ cat >e${EMULATION_NAME}.c <<EOF /* This file is is generated by a shell script. DO NOT EDIT! */ /* Handle embedded relocs for MIPS. - Copyright 1994, 95, 97, 1999 Free Software Foundation, Inc. + Copyright 1994, 95, 97, 99, 2000 Free Software Foundation, Inc. Written by Ian Lance Taylor <ian@cygnus.com> based on generic.em. This file is part of GLD, the Gnu Linker. @@ -31,10 +31,13 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "ld.h" #include "ldmain.h" -#include "ldemul.h" -#include "ldfile.h" #include "ldmisc.h" +#include "ldexp.h" +#include "ldlang.h" +#include "ldfile.h" +#include "ldemul.h" + static void gld${EMULATION_NAME}_before_parse PARAMS ((void)); static void gld${EMULATION_NAME}_after_open PARAMS ((void)); static void check_sections PARAMS ((bfd *, asection *, PTR)); |