[llvm] [CodeGen][Mips] Remove fp128 libcall list (PR #153798)
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 15 08:00:46 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:
> The proper way would be to refactor ArgListEntry to use a ctor...
Done in https://github.com/llvm/llvm-project/pull/153817.
https://github.com/llvm/llvm-project/pull/153798
More information about the llvm-commits
mailing list