aboutsummaryrefslogtreecommitdiff
path: root/bfd/coffcode.h
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1992-12-21 21:17:54 +0000
committerIan Lance Taylor <ian@airs.com>1992-12-21 21:17:54 +0000
commit60ac749cab2e4a1033080b4ac27124fbcd136fa5 (patch)
tree9f84b41c995bac07d02c8a20d21d4def072627df /bfd/coffcode.h
parent5998e36203c87968a03f0cb127e58375abcf1e55 (diff)
downloadgdb-60ac749cab2e4a1033080b4ac27124fbcd136fa5.zip
gdb-60ac749cab2e4a1033080b4ac27124fbcd136fa5.tar.gz
gdb-60ac749cab2e4a1033080b4ac27124fbcd136fa5.tar.bz2
Mon Dec 21 12:40:10 1992 Ian Lance Taylor (ian@cygnus.com)
* Patches from Minh Tran-le <mtranle@paris.intellicorp.com>. * configure.in (i386-*-isc*, i386-*-aix*): New targets. * configure.host (i386-*-isc*, i386-*-aix*): New hosts. * hosts/i386isc.h, config/i386isc.mh: New files for Interactive Unix. * hosts/i386aix.h, config/i386aix.mh: New files for AIX on PS/2. * aix386-core.c: New file for handling core files on AIX on PS/2. * targets.c: if AIX386_CORE, use aix386_core_vec. * coffcode.h (coff_real_object_p): check for I386SVMAGIC as well as I386MAGIC.
Diffstat (limited to 'bfd/coffcode.h')
-rw-r--r--bfd/coffcode.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/bfd/coffcode.h b/bfd/coffcode.h
index 1269879..2386acf 100644
--- a/bfd/coffcode.h
+++ b/bfd/coffcode.h
@@ -458,9 +458,9 @@ INTERNAL_DEFINITION
CODE_FRAGMENT
-.typedef struct {
Special entry points for gdb to swap in coff symbol table parts
-
+.typedef struct
+.{
. void (*_bfd_coff_swap_aux_in) PARAMS ((
. bfd *abfd ,
. PTR ext,
@@ -1188,6 +1188,9 @@ machine = 0;
switch (internal_f->f_magic) {
#ifdef I386MAGIC
case I386MAGIC:
+#ifdef I386SVMAGIC
+ case I386SVMAGIC: /* System V C Compiler aix ps2 */
+#endif
arch = bfd_arch_i386;
machine = 0;
break;