Author: rwatson
Date: Sun Apr 28 14:40:29 2013
New Revision: 250020
URL: http://svnweb.freebsd.org/changeset/base/250020
Log:
Merge @228176 from Perforce to fix a bug introduced in r249553:
Trim two now-unneeded (and likely harmful) lines from the libstand
setjmp/longjmp for MIPS.
Spotted by: jmallett
MFC after: 3 days
Sponsored by: DARPA, AFRL
Modified:
head/lib/libstand/mips/_setjmp.S
Modified: head/lib/libstand/mips/_setjmp.S
==============================================================================
--- head/lib/libstand/mips/_setjmp.S Sun Apr 28 09:29:44 2013
(r250019)
+++ head/lib/libstand/mips/_setjmp.S Sun Apr 28 14:40:29 2013
(r250020)
@@ -72,7 +72,6 @@ LEAF(_setjmp)
REG_S s7, ((S7 + 3) * SZREG)(a0)
REG_S sp, ((SP + 3) * SZREG)(a0)
REG_S s8, ((S8 + 3) * SZREG)(a0)
- REG_S v0, ((32 + 38) * SZREG)(a0)
j ra
move v0, zero
END(_setjmp)
@@ -96,7 +95,6 @@ LEAF(_longjmp)
REG_L s5, ((S5 + 3) * SZREG)(a0)
REG_L s6, ((S6 + 3) * SZREG)(a0)
REG_L s7, ((S7 + 3) * SZREG)(a0)
- REG_L v0, ((32 + 38) * SZREG)(a0) # get fpu status
REG_L sp, ((SP + 3) * SZREG)(a0)
REG_L s8, ((S8 + 3) * SZREG)(a0)
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"