From 635d1df27b9860f837491d435795a17cab2b3bf4 Mon Sep 17 00:00:00 2001 From: gonzo Date: Mon, 12 Mar 2012 20:59:18 +0000 Subject: [PATCH 139/175] Use PTR_SUBU instead of subu (missed this one) git-svn-id: http://svn.freebsd.org/base/head@232893 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f (cherry picked from commit e9b91a460f01a7a7a08525018e1fc5f8ae2557be) Signed-off-by: Xin Li --- libexec/rtld-elf/mips/rtld_start.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libexec/rtld-elf/mips/rtld_start.S b/libexec/rtld-elf/mips/rtld_start.S index eb7196f..75a4825 100644 --- a/libexec/rtld-elf/mips/rtld_start.S +++ b/libexec/rtld-elf/mips/rtld_start.S @@ -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) -- 1.7.9.4