* aoutx.h (NAME(aout,machine_type)): Recognize bfd_mach_i386_i386
and bfd_mach_i386_i386_intel_syntax.
This commit is contained in:
parent
eb9dca9498
commit
3b77b1d509
2 changed files with 8 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue