diff options
Diffstat (limited to 'sysdeps/powerpc/addmul_1.S')
-rw-r--r-- | sysdeps/powerpc/addmul_1.S | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sysdeps/powerpc/addmul_1.S b/sysdeps/powerpc/addmul_1.S index b7d50665e7..2ce4fa2979 100644 --- a/sysdeps/powerpc/addmul_1.S +++ b/sysdeps/powerpc/addmul_1.S @@ -1,5 +1,5 @@ /* Multiply a limb vector by a single limb, for PowerPC. - Copyright (C) 1993, 1994, 1995, 1997, 1999 Free Software Foundation, Inc. + Copyright (C) 1993-1995, 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,9 +31,9 @@ ENTRY(__mpn_addmul_1) lwz r9,0(r3) addc r8,r7,r9 addi r3,r3,-4 /* adjust res_ptr */ - bdz 1f + bdz L(1) -0: lwzu r0,4(r4) +L(0): lwzu r0,4(r4) stwu r8,4(r3) mullw r8,r0,r6 adde r7,r8,r10 @@ -41,9 +41,9 @@ ENTRY(__mpn_addmul_1) lwz r9,4(r3) addze r10,r10 addc r8,r7,r9 - bdnz 0b + bdnz L(0) -1: stw r8,4(r3) +L(1): stw r8,4(r3) addze r3,r10 blr END(__mpn_addmul_1) |