[llvm] [Mips] Fix compiler crash when returning fp128 after calling a functi… (PR #117525)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 26 19:02:17 PST 2024
================
@@ -191,6 +192,16 @@ class MipsCCState : public CCState {
return Return;
}
+ bool CheckCallReturn(const SmallVectorImpl<ISD::OutputArg> &ArgsFlags,
+ CCAssignFn Fn, const Type *RetTy) {
+ PreAnalyzeCallReturnForF128(ArgsFlags, RetTy);
+ PreAnalyzeReturnForVectorFloat(ArgsFlags);
----------------
yingopq wrote:
Add a new function to check whether call funtion return type was origin from fp128.
https://github.com/llvm/llvm-project/pull/117525
More information about the llvm-commits
mailing list