projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
153a277
)
Use "else if" on cpu_arch_isa
author
H.J. Lu
<hjl.tools@gmail.com>
Thu, 30 Apr 2015 15:36:17 +0000
(08:36 -0700)
committer
H.J. Lu
<hjl.tools@gmail.com>
Thu, 30 Apr 2015 15:36:17 +0000
(08:36 -0700)
* config/tc-i386.c (i386_target_format): Use "else if" on
cpu_arch_isa.
gas/ChangeLog
patch
|
blob
|
history
gas/config/tc-i386.c
patch
|
blob
|
history
diff --git
a/gas/ChangeLog
b/gas/ChangeLog
index 9764a243faf96b64388638070c6a98c3a92c4ec5..556c927eb0b6f45c5d44497db57b04d325630258 100644
(file)
--- a/
gas/ChangeLog
+++ b/
gas/ChangeLog
@@
-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>
PR gas/18347
diff --git
a/gas/config/tc-i386.c
b/gas/config/tc-i386.c
index 82abaef2303346c518184ffef114a8fcb5887b15..4bcf4169dfcc5c3c4e6f8b2085768932aecf91a6 100644
(file)
--- a/
gas/config/tc-i386.c
+++ b/
gas/config/tc-i386.c
@@
-10049,7
+10049,7
@@
i386_target_format (void)
as_fatal (_("Intel L1OM is 64bit only"));
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)
as_fatal (_("Intel K1OM is 64bit only"));