Make dwarf_eh_object is 8 words long

This commit is contained in:
matt 2013-06-24 14:49:13 +00:00
parent 5b92de54be
commit 21ba1833d3
2 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: crtbegin.S,v 1.5 2013/05/05 10:26:57 skrll Exp $ */ /* $NetBSD: crtbegin.S,v 1.6 2013/06/24 14:49:13 matt Exp $ */
/*- /*-
* Copyright (c) 2012 The NetBSD Foundation, Inc. * Copyright (c) 2012 The NetBSD Foundation, Inc.
* All rights reserved. * All rights reserved.
@ -30,7 +30,7 @@
#include <arm/asm.h> #include <arm/asm.h>
RCSID("$NetBSD: crtbegin.S,v 1.5 2013/05/05 10:26:57 skrll Exp $") RCSID("$NetBSD: crtbegin.S,v 1.6 2013/06/24 14:49:13 matt Exp $")
.section .ctors, "aw", %progbits .section .ctors, "aw", %progbits
.p2align 2 .p2align 2
@ -64,7 +64,7 @@ __dso_handle:
#endif #endif
.local __dwarf_eh_object .local __dwarf_eh_object
.comm __dwarf_eh_object,24 .comm __dwarf_eh_object,32
.local __initialized .local __initialized
.comm __initialized,1 .comm __initialized,1
.local __finished .local __finished

View File

@ -27,7 +27,7 @@
* POSSIBILITY OF SUCH DAMAGE. * POSSIBILITY OF SUCH DAMAGE.
*/ */
#include <sys/cdefs.h> #include <sys/cdefs.h>
__RCSID("$NetBSD: crtbegin.c,v 1.1 2013/06/22 02:37:09 matt Exp $"); __RCSID("$NetBSD: crtbegin.c,v 1.2 2013/06/24 14:49:13 matt Exp $");
typedef void (*fptr_t)(void); typedef void (*fptr_t)(void);
@ -57,7 +57,7 @@ __weakref_visible void register_frame_info(const void *, const void *)
__weakref_visible void deregister_frame_info(const void *) __weakref_visible void deregister_frame_info(const void *)
__weak_reference(__deregister_frame_info); __weak_reference(__deregister_frame_info);
static long dwarf_eh_object[6]; static long dwarf_eh_object[8];
static unsigned char __initialized; static unsigned char __initialized;
static unsigned char __finished; static unsigned char __finished;