aboutsummaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorOleksandr Tymoshenko <gonzo@FreeBSD.org>2012-03-23 17:54:06 +0000
committerOleksandr Tymoshenko <gonzo@FreeBSD.org>2012-03-23 17:54:06 +0000
commitbbc54af80edcfdcd8f2e61422d0fd9a2fe0addf5 (patch)
tree1e2f330c89dbbaa1ce9296f9d593a02ca304378c /libexec
parent7ccd203639b671b969b5777e128f5de1e6a53132 (diff)
Notes
Diffstat (limited to 'libexec')
-rw-r--r--libexec/rtld-elf/mips/rtld_start.S3
1 files changed, 2 insertions, 1 deletions
diff --git a/libexec/rtld-elf/mips/rtld_start.S b/libexec/rtld-elf/mips/rtld_start.S
index 75a4825cb23d1..a35fced83889e 100644
--- a/libexec/rtld-elf/mips/rtld_start.S
+++ b/libexec/rtld-elf/mips/rtld_start.S
@@ -80,7 +80,8 @@ LEAF(rtld_start)
move a0, s0 /* stack pointer */
move t9, v0
PTR_SUBU sp, 4*SZREG /* ABI requires to reserve memory for 4 regs */
- jr t9 /* _start(sp, cleanup, obj); */
+ move ra,t9 /* RA == PC signals backtrace routine to stop */
+ j t9 /* _start(sp, cleanup, obj); */
move a3, s3 /* restore ps_strings */
END(rtld_start)