[PATCH] D133484: [AArch64][SVE] Fix AArch64_SVE_VectorCall calling convention

Matt Devereau via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 8 05:55:49 PDT 2022


MattDevereau added inline comments.


================
Comment at: llvm/lib/Target/AArch64/AArch64ISelLowering.cpp:6670
+             RegVT.getVectorElementType() == MVT::i1) ||
+            RegVT.isScalableVector())
+          CallConv = CallingConv::AArch64_SVE_VectorCall;
----------------
peterwaller-arm wrote:
> `(A && B) || A` simplifies to `A`.
Oops, didn't see that one. Thanks


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D133484/new/

https://reviews.llvm.org/D133484



More information about the llvm-commits mailing list