aboutsummaryrefslogtreecommitdiff
path: root/gas/config
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@suse.com>2020-06-08 08:40:22 +0200
committerJan Beulich <jbeulich@suse.com>2020-06-08 08:40:22 +0200
commit73c76375955890df396b4f78dee0fa6a52af6c5f (patch)
treed1212a6fa9f5445e74c2f93b4ea962bdec8b13c8 /gas/config
parent22e00a3f4df8cafd3fdb6a0cb7893877606518bb (diff)
downloadfsf-binutils-gdb-73c76375955890df396b4f78dee0fa6a52af6c5f.zip
fsf-binutils-gdb-73c76375955890df396b4f78dee0fa6a52af6c5f.tar.gz
fsf-binutils-gdb-73c76375955890df396b4f78dee0fa6a52af6c5f.tar.bz2
x86: simplify check_byte_reg()
With the introduction of what right now is the very first conditional in the function's loop (commit dc821c5f9ae5 ["x86: replace Reg8, Reg16, Reg32, and Reg64"]), the last if() in the same loop has become pointless - retain just its body.
Diffstat (limited to 'gas/config')
-rw-r--r--gas/config/tc-i386.c19
1 files changed, 4 insertions, 15 deletions
diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c
index cfb3b99..e0ebf80 100644
--- a/gas/config/tc-i386.c
+++ b/gas/config/tc-i386.c
@@ -7132,21 +7132,10 @@ check_byte_reg (void)
continue;
/* Any other register is bad. */
- if (i.types[op].bitfield.class == Reg
- || i.types[op].bitfield.class == RegMMX
- || i.types[op].bitfield.class == RegSIMD
- || i.types[op].bitfield.class == SReg
- || i.types[op].bitfield.class == RegCR
- || i.types[op].bitfield.class == RegDR
- || i.types[op].bitfield.class == RegTR)
- {
- as_bad (_("`%s%s' not allowed with `%s%c'"),
- register_prefix,
- i.op[op].regs->reg_name,
- i.tm.name,
- i.suffix);
- return 0;
- }
+ as_bad (_("`%s%s' not allowed with `%s%c'"),
+ register_prefix, i.op[op].regs->reg_name,
+ i.tm.name, i.suffix);
+ return 0;
}
return 1;
}