[llvm] [Mips] Fix compiler crash when returning fp128 after calling a functi… (PR #117525)
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Mon Jan 6 02:34:40 PST 2025
================
@@ -2903,6 +2903,225 @@ entry:
%cond = select i1 %cmp, fp128 %c, fp128 %d
ret fp128 %cond
}
+
+define { i8, i128 } @bar_structure_without_fp128() {
+ ret { i8, i128 } zeroinitializer
+}
+
+define fp128 @call_structure_without_fp128() {
----------------
nikic wrote:
Ideally we would also switch this test to not use `-relocation-model=pic`, but that should be pre-commited as an independent change.
https://github.com/llvm/llvm-project/pull/117525
More information about the llvm-commits
mailing list