diff options
Diffstat (limited to 'sysdeps/aarch64/fpu/s_fmaxf.c')
-rw-r--r-- | sysdeps/aarch64/fpu/s_fmaxf.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/sysdeps/aarch64/fpu/s_fmaxf.c b/sysdeps/aarch64/fpu/s_fmaxf.c index f450d9fe82..ec4dcdd8c0 100644 --- a/sysdeps/aarch64/fpu/s_fmaxf.c +++ b/sysdeps/aarch64/fpu/s_fmaxf.c @@ -16,8 +16,12 @@ License along with the GNU C Library; if not, see <http://www.gnu.org/licenses/>. */ -#define FUNC fmaxf -#define INSN "fmaxnm" -#define TYPE float -#define REGS "s" -#include <fpu/s_fmin.c> +#include <math.h> + +float +__fmaxf (float x, float y) +{ + return __builtin_fmaxf (x, y); +} + +weak_alias (__fmaxf, fmaxf) |