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 | dd2d0472289af6e25a7ba0ac8e710e777f02afcd (patch) | |
tree | 606f072eb5c67da08abaa80627b98d3bf1def487 /lib | |
parent | 8f32ea5e353eb80520d057d7c6e4f5fd9589387e (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')
-rw-r--r-- | lib/csu/crtend.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/csu/crtend.c b/lib/csu/crtend.c index 8c0d0726e84..f26b95580ba 100644 --- a/lib/csu/crtend.c +++ b/lib/csu/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__[] |