diff options
author | deischen <deischen@FreeBSD.org> | 2003-10-09 20:52:17 +0000 |
---|---|---|
committer | deischen <deischen@FreeBSD.org> | 2003-10-09 20:52:17 +0000 |
commit | 8df72a4176cf8988542f506e380a3d54e83d892c (patch) | |
tree | f3250a49d994b823e671ff677102c088179790ac /lib/libpthread | |
parent | 7bb550b541f9251bb8e209d587b734fb599e9a22 (diff) | |
download | FreeBSD-src-8df72a4176cf8988542f506e380a3d54e83d892c.zip FreeBSD-src-8df72a4176cf8988542f506e380a3d54e83d892c.tar.gz |
Reverse the order of the first two arguments to _sparc64_enter_uts().
The first argument is the UTS function, the second argument is the
first argument to the UTS function. Who's on first.
Diffstat (limited to 'lib/libpthread')
-rw-r--r-- | lib/libpthread/arch/sparc64/sparc64/thr_getcontext.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libpthread/arch/sparc64/sparc64/thr_getcontext.S b/lib/libpthread/arch/sparc64/sparc64/thr_getcontext.S index d855dac..ca6473a 100644 --- a/lib/libpthread/arch/sparc64/sparc64/thr_getcontext.S +++ b/lib/libpthread/arch/sparc64/sparc64/thr_getcontext.S @@ -82,6 +82,6 @@ ENTRY(_sparc64_enter_uts) flushw add %i2, %i3, %i2 sub %i2, SPOFF + CCFSZ, %sp - jmpl %i1, %g0 - mov %i0, %o0 + jmpl %i0, %g0 + mov %i1, %o0 END(_sparc64_enter_uts) |