@@ -254,7 +254,7 @@ LOCAL_LABEL(fadd_check_rte):
254254
255255LOCAL_LABEL(fadd_naninf):
256256 // We come here if at least one input is a NaN or infinity. If either or both
257- // inputs are NaN then we hand off to __fnan2 which will propagate a NaN from
257+ // inputs are NaN then we hand off to fnan2 which will propagate a NaN from
258258 // the input.
259259 //
260260 // On entry, we know r5 = 0x80000000 from the initial uncommon check. Also,
@@ -296,7 +296,7 @@ LOCAL_LABEL(fadd_infinf):
296296 POP {r4,r5,r6,pc}
297297
298298LOCAL_LABEL(fadd_nan):
299- BL SYMBOL_NAME(__fnan2 )
299+ BL SYMBOL_NAME(__compiler_rt_fnan2 )
300300 POP {r4,r5,r6,pc}
301301
302302LOCAL_LABEL(fadd_zerodenorm_x):
@@ -724,7 +724,7 @@ LOCAL_LABEL(fsub_underflow_2):
724724
725725LOCAL_LABEL(fsub_naninf):
726726 // We come here if at least one input is a NaN or infinity. If either or both
727- // inputs are NaN then we hand off to __fnan2 which will propagate a NaN from
727+ // inputs are NaN then we hand off to fnan2 which will propagate a NaN from
728728 // the input.
729729 // We come here if at least one of x,y is a NaN or infinity.
730730 // Their exponents are reliably always in r2 and r3
@@ -767,7 +767,7 @@ LOCAL_LABEL(fsub_infinf):
767767 POP {r4,r5,r6,pc}
768768
769769LOCAL_LABEL(fsub_nan):
770- BL SYMBOL_NAME(__fnan2 )
770+ BL SYMBOL_NAME(__compiler_rt_fnan2 )
771771 POP {r4,r5,r6,pc}
772772
773773LOCAL_LABEL(fsub_zerodenorm_x):
0 commit comments