diff options
author | Andrew Pinski <quic_apinski@quicinc.com> | 2025-05-12 17:23:01 +0000 |
---|---|---|
committer | Andrew Pinski <quic_apinski@quicinc.com> | 2025-05-12 15:16:13 -0700 |
commit | fbd7c49bba4d3afccdfd77eb2ff590428420baf7 (patch) | |
tree | f9c76ecc26ccc633f16b7857669b777e58529cd8 | |
parent | 213c64962d24fa8a4b2f3d7a9c5508f9daed9fa2 (diff) | |
download | gcc-fbd7c49bba4d3afccdfd77eb2ff590428420baf7.zip gcc-fbd7c49bba4d3afccdfd77eb2ff590428420baf7.tar.gz gcc-fbd7c49bba4d3afccdfd77eb2ff590428420baf7.tar.bz2 |
aarch64: Remove cmov<mode>6 patterns
Since the cmov optab is not used and is being removed,
the `cmov<mode>6` patterns from the aarch64 backend can
also be removed.
gcc/ChangeLog:
* config/aarch64/aarch64.md (cmov<mode>6): Remove.
Signed-off-by: Andrew Pinski <quic_apinski@quicinc.com>
-rw-r--r-- | gcc/config/aarch64/aarch64.md | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/gcc/config/aarch64/aarch64.md b/gcc/config/aarch64/aarch64.md index 5c30484..6dbc9fa 100644 --- a/gcc/config/aarch64/aarch64.md +++ b/gcc/config/aarch64/aarch64.md @@ -4555,38 +4555,6 @@ [(set_attr "type" "csel")] ) -(define_expand "cmov<mode>6" - [(set (match_operand:GPI 0 "register_operand") - (if_then_else:GPI - (match_operator 1 "aarch64_comparison_operator" - [(match_operand:GPI 2 "register_operand") - (match_operand:GPI 3 "aarch64_plus_operand")]) - (match_operand:GPI 4 "register_operand") - (match_operand:GPI 5 "register_operand")))] - "" - " - operands[2] = aarch64_gen_compare_reg (GET_CODE (operands[1]), operands[2], - operands[3]); - operands[3] = const0_rtx; - " -) - -(define_expand "cmov<mode>6" - [(set (match_operand:GPF 0 "register_operand") - (if_then_else:GPF - (match_operator 1 "aarch64_comparison_operator" - [(match_operand:GPF 2 "register_operand") - (match_operand:GPF 3 "aarch64_fp_compare_operand")]) - (match_operand:GPF 4 "register_operand") - (match_operand:GPF 5 "register_operand")))] - "" - " - operands[2] = aarch64_gen_compare_reg (GET_CODE (operands[1]), operands[2], - operands[3]); - operands[3] = const0_rtx; - " -) - (define_insn "*cmov<mode>_insn" [(set (match_operand:ALLI 0 "register_operand") (if_then_else:ALLI |