From 48ac0597336da20bedb567734cfa10a34128008c Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 12 Oct 1999 00:19:17 +0000 Subject: Update. 1999-10-11 Ulrich Drepper * malloc/memprof.c (GETSP): Define for PowerPC. (GETTIME): Fix generic version. --- sysdeps/powerpc/fpu/s_fmax.S | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sysdeps/powerpc/fpu/s_fmax.S') diff --git a/sysdeps/powerpc/fpu/s_fmax.S b/sysdeps/powerpc/fpu/s_fmax.S index 3721db4c94..d6e5ec58b1 100644 --- a/sysdeps/powerpc/fpu/s_fmax.S +++ b/sysdeps/powerpc/fpu/s_fmax.S @@ -21,13 +21,13 @@ ENTRY(__fmax) /* double [f1] fmax (double [f1] x, double [f2] y); */ - fcmpu cr0,f1,f2 + fcmpu cr0,fp1,fp2 blt cr0,0f /* if x < y, neither x nor y can be NaN... */ bnulr+ cr0 /* x and y are unordered, so one of x or y must be a NaN... */ - fcmpu cr1,f2,f2 + fcmpu cr1,fp2,fp2 bunlr cr1 -0: fmr f1,f2 +0: fmr fp1,fp2 blr END(__fmax) -- cgit v1.2.3