diff options
author | Stan Shebs <shebs@codesourcery.com> | 1994-01-04 23:35:56 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1994-01-04 23:35:56 +0000 |
commit | 5a0517735a47db1eea68bad63ae6930fef766faa (patch) | |
tree | 97e145c019aa19a6f50cdbb8f02efc069db3116b /gas/config/obj-ecoff.c | |
parent | 5efb389945c45886ceddd830387b1a26b5ecdf24 (diff) | |
download | gdb-5a0517735a47db1eea68bad63ae6930fef766faa.zip gdb-5a0517735a47db1eea68bad63ae6930fef766faa.tar.gz gdb-5a0517735a47db1eea68bad63ae6930fef766faa.tar.bz2 |
Tue Jan 4 15:12:43 1994 Stan Shebs (shebs@andros.cygnus.com)
* Makefile.in (INCLUDES): Add $(srcdir)/.. to places to search.
* config/obj-ecoff.c: Include files as "bfd/" instead of "../bfd/".
* app.c, flonum.h, hex-value.c (const): Change #if to be more
portable.
Diffstat (limited to 'gas/config/obj-ecoff.c')
-rw-r--r-- | gas/config/obj-ecoff.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gas/config/obj-ecoff.c b/gas/config/obj-ecoff.c index 7d997a4..8426c7a 100644 --- a/gas/config/obj-ecoff.c +++ b/gas/config/obj-ecoff.c @@ -1,5 +1,5 @@ /* ECOFF object file format. - Copyright (C) 1993 Free Software Foundation, Inc. + Copyright (C) 1993, 1994 Free Software Foundation, Inc. Contributed by Cygnus Support. This file was put together by Ian Lance Taylor <ian@cygnus.com>. @@ -21,8 +21,8 @@ #include "as.h" #include "coff/internal.h" -#include "../bfd/libcoff.h" -#include "../bfd/libecoff.h" +#include "bfd/libcoff.h" +#include "bfd/libecoff.h" /* Almost all of the ECOFF support is actually in ecoff.c in the main gas directory. This file mostly just arranges to call that one at @@ -156,9 +156,6 @@ ecoff_frob_file () (file_ptr) 0, sizeof s) == false) as_fatal ("Can't write REGINFO section"); } - - bfd_set_symtab (stdoutput, bfd_get_outsymbols (stdoutput), - (unsigned int) (hdr->isymMax + hdr->iextMax)); } /* This is called by the ECOFF code to set the external information |