[PATCH] D75023: [RISCV][GlobalISel] Add lowerCall for calling convention
Yueh-Ting (eop) Chen via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 12 05:05:48 PDT 2023
eopXD added inline comments.
================
Comment at: llvm/lib/Target/RISCV/GISel/RISCVCallLowering.cpp:305
+
+ // TODO: Only integer, pointer and aggregate types are supported now.
+ if (!Info.OrigRet.Ty->isIntOrPtrTy() && !Info.OrigRet.Ty->isAggregateType())
----------------
This seems to contradict with the description of this patch, "Simple non-aggregate types are supported."
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