[llvm] [Intrinsics][AArch64] Add intrinsic to mask off aliasing vector lanes (PR #117007)

David Green via llvm-commits llvm-commits at lists.llvm.org
Sun Jan 26 10:33:21 PST 2025


================
@@ -19861,7 +19946,8 @@ static SDValue getPTest(SelectionDAG &DAG, EVT VT, SDValue Pg, SDValue Op,
                         AArch64CC::CondCode Cond);
 
 static bool isPredicateCCSettingOp(SDValue N) {
-  if ((N.getOpcode() == ISD::SETCC) ||
+  if ((N.getOpcode() == ISD::SETCC ||
+       N.getOpcode() == ISD::EXPERIMENTAL_ALIAS_LANE_MASK) ||
----------------
davemgreen wrote:

Does adding this mean we need to always lower this to a while?

https://github.com/llvm/llvm-project/pull/117007


More information about the llvm-commits mailing list