aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlice Carlotti <alice.carlotti@arm.com>2025-07-11 08:11:16 +0100
committerAlice Carlotti <alice.carlotti@arm.com>2025-07-12 10:04:26 +0100
commit6a2b11857f8151379a6c0d126c3a7d38e2fbe776 (patch)
treec439dca6b347a18e4722d21b4542cce5366ef80a
parent6a959b127014b262bb62b9fd31fd4d1f4ce4777f (diff)
downloadbinutils-6a2b11857f8151379a6c0d126c3a7d38e2fbe776.zip
binutils-6a2b11857f8151379a6c0d126c3a7d38e2fbe776.tar.gz
binutils-6a2b11857f8151379a6c0d126c3a7d38e2fbe776.tar.bz2
aarch64: Remove redundant ORs with 0
-rw-r--r--opcodes/aarch64-tbl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/opcodes/aarch64-tbl.h b/opcodes/aarch64-tbl.h
index 71563b0..1ee2317 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) \