[PATCH] D75023: [RISCV][GlobalISel] Add lowerCall for calling convention
Matt Arsenault via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 9 08:45:20 PST 2022
arsenm accepted this revision.
arsenm added inline comments.
This revision is now accepted and ready to land.
================
Comment at: llvm/lib/Target/RISCV/RISCVCallLowering.cpp:263
+ // TODO: Support all argument types.
+ for (auto &AInfo : Info.OrigArgs) {
+ if (AInfo.Ty->isIntegerTy())
----------------
Not sure why you're bothering to filter these out. splitToValueTypes should handle near everything (I'm aware of some assertions on weird non-byte element sized vectors)
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D75023/new/
https://reviews.llvm.org/D75023
More information about the llvm-commits
mailing list