Module Name: src
Committed By: matt
Date: Wed Sep 2 15:49:42 UTC 2009
Modified Files:
src/libexec/ld.elf_so/arch/mips [matt-nb5-mips64]: rtld_start.S
Log Message:
Readjust sp by correct amount.
To generate a diff of this commit:
cvs rdiff -u -r1.9.44.1 -r1.9.44.2 \
src/libexec/ld.elf_so/arch/mips/rtld_start.S
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/libexec/ld.elf_so/arch/mips/rtld_start.S
diff -u src/libexec/ld.elf_so/arch/mips/rtld_start.S:1.9.44.1 src/libexec/ld.elf_so/arch/mips/rtld_start.S:1.9.44.2
--- src/libexec/ld.elf_so/arch/mips/rtld_start.S:1.9.44.1 Wed Aug 26 03:32:53 2009
+++ src/libexec/ld.elf_so/arch/mips/rtld_start.S Wed Sep 2 15:49:42 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: rtld_start.S,v 1.9.44.1 2009/08/26 03:32:53 matt Exp $ */
+/* $NetBSD: rtld_start.S,v 1.9.44.2 2009/09/02 15:49:42 matt Exp $ */
/*
* Copyright 1997 Michael L. Hitch <[email protected]>
@@ -61,7 +61,7 @@
PTR_L a1, 0*SZREG(sp) # our atexit function
PTR_L a2, 1*SZREG(sp) # obj_main entry
- PTR_ADDU sp, 3*SZREG # readjust stack
+ PTR_ADDU sp, 2*SZREG # readjust stack
move a0, s0 # stack pointer
move t9, v0
jr t9 # _start(sp, cleanup, obj);