[PATCH] D131547: [Clang][AArch64] Use generic extract/insert vector for svget/svset/svcreate tuples
Nuno Lopes via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Aug 10 02:12:23 PDT 2022
nlopes added inline comments.
================
Comment at: clang/lib/CodeGen/CGBuiltin.cpp:9114
+ unsigned int MinElts = SrcTy->getElementCount().getKnownMinValue();
+ Value *Call = llvm::UndefValue::get(VTy);
+ for (unsigned int I = 0; I < Ops.size(); I++) {
----------------
Please use PoisonValue here
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D131547/new/
https://reviews.llvm.org/D131547
More information about the cfe-commits
mailing list