diff options
author | Graham Stott <grahams@redhat.com> | 2001-08-14 14:06:10 +0000 |
---|---|---|
committer | Graham Stott <grahams@gcc.gnu.org> | 2001-08-14 14:06:10 +0000 |
commit | 540ceb67e0215764fa60f7c086aeafdeba11df89 (patch) | |
tree | 78dcb10efc7064974f842b6982707670cf832135 /gcc/libgcc2.c | |
parent | 2d515d60b36186d77447cfd156d0e6be8f6a81f3 (diff) | |
download | gcc-540ceb67e0215764fa60f7c086aeafdeba11df89.zip gcc-540ceb67e0215764fa60f7c086aeafdeba11df89.tar.gz gcc-540ceb67e0215764fa60f7c086aeafdeba11df89.tar.bz2 |
* libgcc2.c (*): Replace EH_FRAME_SECTION with EH_FRAME_SECTION_NAME.
From-SVN: r44891
Diffstat (limited to 'gcc/libgcc2.c')
-rw-r--r-- | gcc/libgcc2.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/libgcc2.c b/gcc/libgcc2.c index 1c6685f..81114db 100644 --- a/gcc/libgcc2.c +++ b/gcc/libgcc2.c @@ -2741,7 +2741,7 @@ cacheflush (char *beg, int size, int flag) /* Some ELF crosses use crtstuff.c to provide __CTOR_LIST__, but use this code to run constructors. In that case, we need to handle EH here, too. */ -#ifdef EH_FRAME_SECTION +#ifdef EH_FRAME_SECTION_NAME #include "unwind-dw2-fde.h" extern unsigned char __EH_FRAME_BEGIN__[]; #endif @@ -2761,7 +2761,7 @@ __do_global_dtors (void) (*(p-1)) (); } #endif -#if defined (EH_FRAME_SECTION) && !defined (HAS_INIT_SECTION) +#if defined (EH_FRAME_SECTION_NAME) && !defined (HAS_INIT_SECTION) { static int completed = 0; if (! completed) @@ -2780,7 +2780,7 @@ __do_global_dtors (void) void __do_global_ctors (void) { -#ifdef EH_FRAME_SECTION +#ifdef EH_FRAME_SECTION_NAME { static struct object object; __register_frame_info (__EH_FRAME_BEGIN__, &object); |