[clang] [compiler-rt] [llvm] [SPARC] Properly handle CC for long double on sparc32 (PR #162226)
Sergei Barannikov via llvm-commits
llvm-commits at lists.llvm.org
Sat Nov 8 23:58:41 PST 2025
================
@@ -241,3 +241,9 @@ entry:
store fp128 %1, ptr %scalar.result, align 8
ret void
}
+
+define fp128 @f128_direct(fp128 %num) {
+ %ret = call fp128 @f128_callee(fp128 %num, fp128 %num)
+ ret fp128 %ret
+}
+declare fp128 @f128_callee(fp128 %a, fp128 %b)
----------------
s-barannikov wrote:
Missing CHECK lines.
Consider using update_llc_test_checks.py to regenerate them for the whole file (as a separate change).
https://github.com/llvm/llvm-project/pull/162226
More information about the llvm-commits
mailing list