[binutils-gdb] aarch64: Remove redundant ORs with 0
Alice Carlotti
acarlotti@sourceware.org
Sat Jul 12 09:06:27 GMT 2025
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=6a2b11857f8151379a6c0d126c3a7d38e2fbe776
commit 6a2b11857f8151379a6c0d126c3a7d38e2fbe776
Author: Alice Carlotti <alice.carlotti@arm.com>
Date: Fri Jul 11 08:11:16 2025 +0100
aarch64: Remove redundant ORs with 0
Diff:
---
opcodes/aarch64-tbl.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/opcodes/aarch64-tbl.h b/opcodes/aarch64-tbl.h
index 71563b032ba..1ee23176ed5 100644
--- a/opcodes/aarch64-tbl.h
+++ b/opcodes/aarch64-tbl.h
@@ -3341,10 +3341,10 @@ static const aarch64_feature_set aarch64_feature_sve2p2_sme2p2 =
{ NAME, OPCODE, MASK, asimdsame, 0, FAMINMAX, OPS, QUALS, FLAGS, 0, 0, NULL }
#define FAMINMAX_SVE2_INSN(NAME,OPCODE,MASK,OPS,QUALS,CONSTRAINTS) \
{ NAME, OPCODE, MASK, sve_size_hsd, 0, FAMINMAX_SVE2, OPS, QUALS, \
- 0 | F_STRICT, CONSTRAINTS, 2, NULL }
+ F_STRICT, CONSTRAINTS, 2, NULL }
#define FAMINMAX_SME2_INSN(NAME,OPCODE,MASK,OPS,QUALS) \
{ NAME, OPCODE, MASK, sme_size_22_hsd, 0, FAMINMAX_SME2, OPS, QUALS, \
- F_STRICT | 0, 0, 1, NULL }
+ F_STRICT, 0, 1, NULL }
#define FP8_INSN(NAME, OPCODE, MASK, CLASS, OPS, QUALS, FLAGS) \
{ NAME, OPCODE, MASK, CLASS, 0, FP8, OPS, QUALS, FLAGS, 0, 0, NULL }
#define FP8_SVE2_INSN(NAME,OPCODE,MASK,CLASS,OP,OPS,QUALS,FLAGS,TIED) \
More information about the Binutils-cvs
mailing list