[llvm] [LLVM][AArch64] Refactor lowering of fixed length integer setcc operations. (PR #132434)
Eli Friedman via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 2 15:04:36 PDT 2025
================
@@ -15927,9 +15870,11 @@ SDValue AArch64TargetLowering::LowerVSETCC(SDValue Op,
if (LHS.getValueType().getVectorElementType().isInteger()) {
assert(LHS.getValueType() == RHS.getValueType());
AArch64CC::CondCode AArch64CC = changeIntCCToAArch64CC(CC);
- SDValue Cmp =
- EmitVectorComparison(LHS, RHS, AArch64CC, false, CmpVT, dl, DAG);
- return DAG.getSExtOrTrunc(Cmp, dl, Op.getValueType());
+ if (SDValue Cmp =
+ EmitVectorComparison(LHS, RHS, AArch64CC, false, CmpVT, dl, DAG))
----------------
efriedma-quic wrote:
Can EmitVectorComparison ever succeed here? We just checked that the comparison is an integer comparison, and with this patch EmitVectorComparison always bails on integer comparisons.
https://github.com/llvm/llvm-project/pull/132434
More information about the llvm-commits
mailing list