Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/lib/csu/arm_elf After christos@ latest re-structuring of inc...
details: https://anonhg.NetBSD.org/src/rev/ac733378b1d2
branches: trunk
changeset: 773025:ac733378b1d2
user: he <he%NetBSD.org@localhost>
date: Wed Jan 25 13:29:58 2012 +0000
description:
After christos@ latest re-structuring of includes and defines in
the various param.h files, STACKALIGNBYTES is now called STACK_ALIGNBYTES,
so adapt accordingly.
diffstat:
lib/csu/arm_elf/crt0.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 9a4d70cd2e02 -r ac733378b1d2 lib/csu/arm_elf/crt0.c
--- a/lib/csu/arm_elf/crt0.c Wed Jan 25 09:36:13 2012 +0000
+++ b/lib/csu/arm_elf/crt0.c Wed Jan 25 13:29:58 2012 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: crt0.c,v 1.9 2011/03/07 05:09:09 joerg Exp $ */
+/* $NetBSD: crt0.c,v 1.10 2012/01/25 13:29:58 he Exp $ */
/*
* Copyright (C) 1997 Mark Brinicombe
@@ -60,7 +60,7 @@
" add r2, r2, #0x0004 \n"
"\n"
" /* Ensure the stack is properly aligned before calling C code. */\n"
-" bic sp, sp, #" ___STRING(STACKALIGNBYTES) " \n"
+" bic sp, sp, #" ___STRING(STACK_ALIGNBYTES) "\n"
" sub sp, sp, #8 \n"
" str r5, [sp, #4] \n"
" str r4, [sp, #0] \n"
@@ -68,7 +68,7 @@
" b " ___STRING(_C_LABEL(___start)) " ");
#if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: crt0.c,v 1.9 2011/03/07 05:09:09 joerg Exp $");
+__RCSID("$NetBSD: crt0.c,v 1.10 2012/01/25 13:29:58 he Exp $");
#endif /* LIBC_SCCS and not lint */
void
Home |
Main Index |
Thread Index |
Old Index