diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2009-07-14 16:37:32 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2009-07-14 16:37:32 +0000 |
commit | b362cd03aa8833266a7753e234f75878dff8a1b8 (patch) | |
tree | dd1d9a603d32b33d603ffb27701e93e8125b31ac /lib/csu | |
parent | bd166c096c2b6a4ed013cdda4103bca581dabc6b (diff) |
Don't specify mode(SI) attribute for __EH_FRAME_END__ as we have
32 bit ints on OpenBSD.
ok kettenis@
Diffstat (limited to 'lib/csu')
-rw-r--r-- | lib/csu/common_elf/crtend.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/csu/common_elf/crtend.c b/lib/csu/common_elf/crtend.c index 8c0d0726e84..f26b95580ba 100644 --- a/lib/csu/common_elf/crtend.c +++ b/lib/csu/common_elf/crtend.c @@ -1,4 +1,4 @@ -/* $OpenBSD: crtend.c,v 1.7 2009/04/13 20:15:24 kurt Exp $ */ +/* $OpenBSD: crtend.c,v 1.8 2009/07/14 16:37:31 jsg Exp $ */ /* $NetBSD: crtend.c,v 1.1 1996/09/12 16:59:04 cgd Exp $ */ #include <sys/cdefs.h> @@ -11,7 +11,7 @@ static init_f __DTOR_LIST__[1] __attribute__((section(".dtors"))) = { (void *)0 }; /* XXX */ static const int __EH_FRAME_END__[] -__attribute__((unused, mode(SI), section(".eh_frame"), aligned(4))) = { 0 }; +__attribute__((unused, section(".eh_frame"), aligned(4))) = { 0 }; #if (__GNUC__ > 2) static void * __JCR_END__[] |