Author: gonzo
Date: Mon Mar 12 20:59:18 2012
New Revision: 232893
URL: http://svn.freebsd.org/changeset/base/232893
Log:
Use PTR_SUBU instead of subu (missed this one)
Modified:
head/libexec/rtld-elf/mips/rtld_start.S
Modified: head/libexec/rtld-elf/mips/rtld_start.S
==============================================================================
--- head/libexec/rtld-elf/mips/rtld_start.S Mon Mar 12 20:58:09 2012
(r232892)
+++ head/libexec/rtld-elf/mips/rtld_start.S Mon Mar 12 20:59:18 2012
(r232893)
@@ -79,7 +79,7 @@ LEAF(rtld_start)
PTR_ADDU sp, 4*PTR_SIZE /* readjust stack */
move a0, s0 /* stack pointer */
move t9, v0
- subu sp, 4*SZREG /* ABI requires to reserve memory for 4
regs */
+ PTR_SUBU sp, 4*SZREG /* ABI requires to reserve memory for 4
regs */
jr t9 /* _start(sp, cleanup, obj); */
move a3, s3 /* restore ps_strings */
END(rtld_start)
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"