[compiler-rt] [compiler-rt][builtins]Fix complex division for aarch64 (PR #106664)

Alexander Richardson via llvm-commits llvm-commits at lists.llvm.org
Sat Sep 14 22:00:09 PDT 2024


================
@@ -346,15 +346,6 @@ static __inline fp_t __compiler_rt_logbf(fp_t x) {
 static __inline fp_t __compiler_rt_scalbnf(fp_t x, int y) {
   return __compiler_rt_scalbnX(x, y);
 }
-static __inline fp_t __compiler_rt_fmaxf(fp_t x, fp_t y) {
----------------
arichardson wrote:

@alexander-shaposhnikov The same issue exists for doubles just a few lines below, are you planning to change that too?

https://github.com/llvm/llvm-project/pull/106664


More information about the llvm-commits mailing list