[PATCH] D157953: [CGCall][RISCV] Handle function calls with parameter of RVV tuple type
Craig Topper via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Aug 18 20:10:57 PDT 2023
craig.topper added inline comments.
================
Comment at: clang/lib/CodeGen/CGCall.cpp:5278
+ for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
+ llvm::Value *LI = Builder.CreateExtractValue(
+ StoredStructValue, i, Src.getName() + ".extract" + Twine(i));
----------------
`LI` meant LoadInst in the original code.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D157953/new/
https://reviews.llvm.org/D157953
More information about the cfe-commits
mailing list