Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-7]: src/lib/csu/arch/mips Pull up following revision(s) (requeste...
details: https://anonhg.NetBSD.org/src/rev/39dfdeb689b1
branches: netbsd-7
changeset: 799273:39dfdeb689b1
user: martin <martin%NetBSD.org@localhost>
date: Sat May 02 18:18:22 2015 +0000
description:
Pull up following revision(s) (requested by skrll in ticket #730):
lib/csu/arch/mips/crti.S: revision 1.3
Make sure .init and .fini are word (4byte) aligned.
diffstat:
lib/csu/arch/mips/crti.S | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diffs (31 lines):
diff -r 771eff679fb7 -r 39dfdeb689b1 lib/csu/arch/mips/crti.S
--- a/lib/csu/arch/mips/crti.S Sat May 02 18:09:06 2015 +0000
+++ b/lib/csu/arch/mips/crti.S Sat May 02 18:18:22 2015 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: crti.S,v 1.2 2013/06/30 08:00:34 matt Exp $ */
+/* $NetBSD: crti.S,v 1.2.8.1 2015/05/02 18:18:22 martin Exp $ */
/*-
* Copyright (c) 2011 The NetBSD Foundation, Inc.
@@ -31,11 +31,12 @@
#include <mips/asm.h>
-RCSID("$NetBSD: crti.S,v 1.2 2013/06/30 08:00:34 matt Exp $")
+RCSID("$NetBSD: crti.S,v 1.2.8.1 2015/05/02 18:18:22 martin Exp $")
#include "sysident.S"
.section ".init", "ax", @progbits
+ .p2align 2
NESTED_NOPROFILE(_init, CALLFRAME_SIZ, ra)
SETUP_GP
PTR_SUBU sp, sp, CALLFRAME_SIZ # allocate stack frame
@@ -48,6 +49,7 @@
END(_init)
.section ".fini", "ax", @progbits
+ .p2align 2
NESTED_NOPROFILE(_fini, CALLFRAME_SIZ, ra)
SETUP_GP
PTR_SUBU sp, sp, CALLFRAME_SIZ # allocate stack frame
Home |
Main Index |
Thread Index |
Old Index