diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-02-28 22:36:31 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-02-28 22:36:31 +0000 |
commit | 4e141d64a5e933013a479f4e3695f5e9a5a86059 (patch) | |
tree | 99ddae8e5664d52ef5999f20e50833f8537e8cde /sysdeps/powerpc/rshift.S | |
parent | b041ebc280681f391cd0a3b4d70e08ec72179952 (diff) | |
download | glibc-4e141d64a5e933013a479f4e3695f5e9a5a86059.zip glibc-4e141d64a5e933013a479f4e3695f5e9a5a86059.tar.gz glibc-4e141d64a5e933013a479f4e3695f5e9a5a86059.tar.bz2 |
Update.
* sysdeps/powerpc/fpu/s_copysign.S: Use L() instead of local labels.
* sysdeps/powerpc/submul_1.S: Likewise.
* sysdeps/powerpc/sub_n.S: Likewise.
* sysdeps/powerpc/strcpy.S: Likewise.
* sysdeps/powerpc/strcmp.S: Likewise.
* sysdeps/powerpc/stpcpy.S: Likewise.
* sysdeps/powerpc/rshift.S: Likewise.
* sysdeps/powerpc/mul_1.S: Likewise.
* sysdeps/powerpc/memset.S: Likewise.
* sysdeps/powerpc/lshift.S: Likewise.
* sysdeps/powerpc/addmul_1.S: Likewise.
* sysdeps/powerpc/add_n.S: Likewise.
Diffstat (limited to 'sysdeps/powerpc/rshift.S')
-rw-r--r-- | sysdeps/powerpc/rshift.S | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sysdeps/powerpc/rshift.S b/sysdeps/powerpc/rshift.S index c09a2a9..a02fb25 100644 --- a/sysdeps/powerpc/rshift.S +++ b/sysdeps/powerpc/rshift.S @@ -1,5 +1,5 @@ /* Shift a limb right, low level routine. - Copyright (C) 1995, 1997, 1999 Free Software Foundation, Inc. + Copyright (C) 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,26 +31,26 @@ ENTRY(__mpn_rshift) subfic r8,r6,32 lwz r11,0(r4) # load first s1 limb slw r3,r11,r8 # compute function return value - bdz 1f + bdz L(1) -0: lwzu r10,4(r4) +L(0): lwzu r10,4(r4) srw r9,r11,r6 slw r12,r10,r8 or r9,r9,r12 stwu r9,4(r7) - bdz 2f + bdz L(2) lwzu r11,4(r4) srw r9,r10,r6 slw r12,r11,r8 or r9,r9,r12 stwu r9,4(r7) - bdnz 0b + bdnz L(0) -1: srw r0,r11,r6 +L(1): srw r0,r11,r6 stw r0,4(r7) blr -2: srw r0,r10,r6 +L(2): srw r0,r10,r6 stw r0,4(r7) blr END(__mpn_rshift) |