about summary refs log tree commit diff
path: root/sysdeps/powerpc/fpu/s_copysign.S
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/powerpc/fpu/s_copysign.S')
-rw-r--r--sysdeps/powerpc/fpu/s_copysign.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/powerpc/fpu/s_copysign.S b/sysdeps/powerpc/fpu/s_copysign.S
index 90276973ce..6167112927 100644
--- a/sysdeps/powerpc/fpu/s_copysign.S
+++ b/sysdeps/powerpc/fpu/s_copysign.S
@@ -1,5 +1,5 @@
 /* Copy a sign bit between floating-point values.
-   Copyright (C) 1997, 1999 Free Software Foundation, Inc.
+   Copyright (C) 1997, 1999, 2000 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -31,10 +31,10 @@ ENTRY(__copysign)
 	lwz	r3,8(r1)
 	cmpwi   r3,0
 	addi    r1,r1,16
-	blt     0f
+	blt     L(0)
 	fabs    fp1,fp1
 	blr
-0:	fnabs   fp1,fp1
+L(0):	fnabs   fp1,fp1
 	blr
 	END (__copysign)