diff options
author | Carlos Sánchez de La Lama <csanchezdll@gmail.com> | 2012-06-07 11:35:59 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-06-07 11:57:09 -0700 |
commit | 24a6dbed9bdd40ae4c90d6a9ed7024ea79cfd3ce (patch) | |
tree | 3a2d5ec11d67313d108d68fd2631770f8b2574ef /nptl/sysdeps/sparc | |
parent | c08010c7cdea229bc3b27ecf42855d32daffd71e (diff) | |
download | glibc-24a6dbed9bdd40ae4c90d6a9ed7024ea79cfd3ce.tar.gz glibc-24a6dbed9bdd40ae4c90d6a9ed7024ea79cfd3ce.tar.xz glibc-24a6dbed9bdd40ae4c90d6a9ed7024ea79cfd3ce.zip |
Fix build on non-v9 sparc32.
nptl/ [BZ #14205] * sysdeps/sparc/sparc32/pthread_spin_lock.S: Do not use v9 branches.
Diffstat (limited to 'nptl/sysdeps/sparc')
-rw-r--r-- | nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S b/nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S index 580796981e..3155121700 100644 --- a/nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S +++ b/nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S @@ -28,5 +28,5 @@ ENTRY(pthread_spin_lock) 2: orcc %g1, 0x0, %g0 bne,a 2b ldub [%o0], %g1 - ba,a,pt %xcc, 1b + ba,a 1b END(pthread_spin_lock) |