summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2002-09-02 05:58:55 +0000
committerAlan Modra <amodra@bigpond.net.au>2002-09-02 05:58:55 +0000
commit5765692feff56548059d52547925e2ee546dc602 (patch)
tree0a9829e7b0873175f4566ddc74d0b73af4d4f89f
parent4df9fb37b32ad4f19800011e104bc3f41148bea6 (diff)
downloadgdb-5765692feff56548059d52547925e2ee546dc602.tar.gz
* aoutx.h (NAME(aout,machine_type)): Recognize bfd_mach_i386_i386
and bfd_mach_i386_i386_intel_syntax.
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/aoutx.h4
2 files changed, 8 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 5fb4b61233b..f8a0a9fd744 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+2002-09-02 Alan Modra <amodra@bigpond.net.au>
+
+ * aoutx.h (NAME(aout,machine_type)): Recognize bfd_mach_i386_i386
+ and bfd_mach_i386_i386_intel_syntax.
+
2002-08-30 John David Anglin <dave@hiauly1.hia.nrc.ca>
* bfd-in.h (align_power): Cast constants to bfd_vma type.
diff --git a/bfd/aoutx.h b/bfd/aoutx.h
index fffb6d92ab6..7fa334ab48f 100644
--- a/bfd/aoutx.h
+++ b/bfd/aoutx.h
@@ -757,7 +757,9 @@ NAME(aout,machine_type) (arch, machine, unknown)
break;
case bfd_arch_i386:
- if (machine == 0)
+ if (machine == 0
+ || machine == bfd_mach_i386_i386
+ || machine == bfd_mach_i386_i386_intel_syntax)
arch_flags = M_386;
break;