We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30eb193 commit 34a8124Copy full SHA for 34a8124
compiler-rt/lib/builtins/extendhfsf2.c
@@ -16,6 +16,10 @@ COMPILER_RT_ABI NOINLINE float __extendhfsf2(src_t a) {
16
return __extendXfYf2__(a);
17
}
18
19
+COMPILER_RT_ABI NOINLINE long double __extendhfxf2(src_t a) {
20
+ return (long double)__extendXfYf2__(a);
21
+}
22
+
23
COMPILER_RT_ABI float __gnu_h2f_ieee(src_t a) { return __extendhfsf2(a); }
24
25
#if defined(__ARM_EABI__)
0 commit comments