[llvm] [CodeGen][Mips] Remove fp128 libcall list (PR #153798)
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 15 06:28:06 PDT 2025
================
@@ -4852,6 +4869,14 @@ class LLVM_ABI TargetLowering : public TargetLoweringBase {
ArgListTy &getArgs() {
return Args;
}
+
+ private:
+ void initOrigArgTys() {
+ for (ArgListEntry &Arg : Args) {
+ if (!Arg.OrigTy)
----------------
nikic wrote:
Unfortunately, ArgListEntry does not use a constructor and is initialized by directly assigning to its members, so there is no great place to do the "set OrigTy and Ty to the same value" initialization. So I'm doing it here, when calling CLI.setCallee().
The proper way would be to refactor ArgListEntry to use a ctor...
https://github.com/llvm/llvm-project/pull/153798
More information about the llvm-commits
mailing list