mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 01:50:24 +08:00
Use "else if" on cpu_arch_isa
* config/tc-i386.c (i386_target_format): Use "else if" on cpu_arch_isa.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2015-04-30 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
* config/tc-i386.c (i386_target_format): Use "else if" on
|
||||||
|
cpu_arch_isa.
|
||||||
|
|
||||||
2015-04-30 Nick Clifton <nickc@redhat.com>
|
2015-04-30 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
PR gas/18347
|
PR gas/18347
|
||||||
|
@ -10049,7 +10049,7 @@ i386_target_format (void)
|
|||||||
as_fatal (_("Intel L1OM is 64bit only"));
|
as_fatal (_("Intel L1OM is 64bit only"));
|
||||||
return ELF_TARGET_L1OM_FORMAT;
|
return ELF_TARGET_L1OM_FORMAT;
|
||||||
}
|
}
|
||||||
if (cpu_arch_isa == PROCESSOR_K1OM)
|
else if (cpu_arch_isa == PROCESSOR_K1OM)
|
||||||
{
|
{
|
||||||
if (x86_elf_abi != X86_64_ABI)
|
if (x86_elf_abi != X86_64_ABI)
|
||||||
as_fatal (_("Intel K1OM is 64bit only"));
|
as_fatal (_("Intel K1OM is 64bit only"));
|
||||||
|
Reference in New Issue
Block a user