[compiler-rt] Add missing extendhfxf2 in compiler rt (PR #109090)
B I Mohammed Abbas via llvm-commits
llvm-commits at lists.llvm.org
Wed Sep 25 21:25:46 PDT 2024
================
@@ -16,6 +16,10 @@ COMPILER_RT_ABI NOINLINE float __extendhfsf2(src_t a) {
return __extendXfYf2__(a);
}
+COMPILER_RT_ABI NOINLINE long double __extendhfxf2(src_t a) {
----------------
biabbas wrote:
It does make sense to have it in a seperate file, but I used extendhfxfy with `half->single` mode of operation. Then typecase this result to long double. Thus I left this in the same file.
https://github.com/llvm/llvm-project/pull/109090
More information about the llvm-commits
mailing list