Module Name: src
Committed By: matt
Date: Tue Jun 25 16:47:47 UTC 2013
Modified Files:
src/lib/csu/arch/mips: crt0.S
Log Message:
Initialize $gp
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/lib/csu/arch/mips/crt0.S
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/csu/arch/mips/crt0.S
diff -u src/lib/csu/arch/mips/crt0.S:1.1 src/lib/csu/arch/mips/crt0.S:1.2
--- src/lib/csu/arch/mips/crt0.S:1.1 Sat Jun 22 02:37:09 2013
+++ src/lib/csu/arch/mips/crt0.S Tue Jun 25 16:47:47 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: crt0.S,v 1.1 2013/06/22 02:37:09 matt Exp $ */
+/* $NetBSD: crt0.S,v 1.2 2013/06/25 16:47:47 matt Exp $ */
/*-
* Copyright (c) 2013 The NetBSD Foundation, Inc.
@@ -31,7 +31,7 @@
#include <mips/asm.h>
-RCSID("$NetBSD: crt0.S,v 1.1 2013/06/22 02:37:09 matt Exp $")
+RCSID("$NetBSD: crt0.S,v 1.2 2013/06/25 16:47:47 matt Exp $")
STRONG_ALIAS(_start,__start)
@@ -49,6 +49,8 @@ STRONG_ALIAS(_start,__start)
*/
NESTED_NOPROFILE(__start, CALLFRAME_SIZ, ra)
+ SETUP_GP
+ SETUP_GP64(t3, __start)
move a0, a1 /* cleanup */
move a1, a2 /* Obj_Entry */
move a2, a3 /* ps_strings */