diff options
author | Steve Chamberlain <steve@cygnus> | 1991-04-03 22:03:55 +0000 |
---|---|---|
committer | Steve Chamberlain <steve@cygnus> | 1991-04-03 22:03:55 +0000 |
commit | 7ca04d280d065c7749a091505e58b1066483dbb6 (patch) | |
tree | 6624cf0d129abfb9003875f7e73b546ac49c66af /ld/ld-emul.c | |
parent | d008dd076c611b53e984077a626c6c8b667988b1 (diff) | |
download | gdb-7ca04d280d065c7749a091505e58b1066483dbb6.zip gdb-7ca04d280d065c7749a091505e58b1066483dbb6.tar.gz gdb-7ca04d280d065c7749a091505e58b1066483dbb6.tar.bz2 |
Fixed some grammer ambiguities
Better error reporting
sun3 support
Diffstat (limited to 'ld/ld-emul.c')
-rwxr-xr-x | ld/ld-emul.c | 25 |
1 files changed, 4 insertions, 21 deletions
diff --git a/ld/ld-emul.c b/ld/ld-emul.c index fed96f3..5c20791 100755 --- a/ld/ld-emul.c +++ b/ld/ld-emul.c @@ -20,27 +20,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* $Id$ - - $Log$ - Revision 1.2 1991/03/22 23:02:28 steve - Brought up to sync with Intel again. - - * Revision 1.1 1991/03/13 00:48:09 chrisb - * Initial revision - * - * Revision 1.4 1991/03/10 09:31:16 rich - * Modified Files: - * Makefile config.h ld-emul.c ld-emul.h ld-gld.c ld-gld960.c - * ld-lnk960.c ld.h lddigest.c ldexp.c ldexp.h ldfile.c ldfile.h - * ldgram.y ldinfo.h ldlang.c ldlang.h ldlex.h ldlex.l ldmain.c - * ldmain.h ldmisc.c ldmisc.h ldsym.c ldsym.h ldversion.c - * ldversion.h ldwarn.h ldwrite.c ldwrite.h y.tab.h - * - * As of this round of changes, ld now builds on all hosts of (Intel960) - * interest and copy passes my copy test on big endian hosts again. - * - * Revision 1.3 1991/02/22 17:14:55 sac - * Added RCS keywords and copyrights * */ /* @@ -57,6 +36,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ extern ld_emulation_xfer_type ld_lnk960_emulation; extern ld_emulation_xfer_type ld_gld_emulation; +extern ld_emulation_xfer_type ld_gld68k_emulation; extern ld_emulation_xfer_type ld_gld960_emulation; @@ -132,6 +112,9 @@ char *target; else if (strcmp(target,GLD_EMULATION_NAME)==0) { ld_emulation = &ld_gld_emulation; } + else if (strcmp(target,GLD68K_EMULATION_NAME)==0) { + ld_emulation = &ld_gld68k_emulation; + } else if (strcmp(target,GLD960_EMULATION_NAME)==0) { ld_emulation = &ld_gld960_emulation; } |