Commit 618939de by Richard Henderson Committed by Richard Henderson

crtstuff.c (__EH_FRAME_BEGIN__): Conditionalize on USE_EH_FRAME_REGISTRY, not…

crtstuff.c (__EH_FRAME_BEGIN__): Conditionalize on USE_EH_FRAME_REGISTRY, not EH_FRAME_SECTION_NAME.

        * crtstuff.c (__EH_FRAME_BEGIN__): Conditionalize on
        USE_EH_FRAME_REGISTRY, not EH_FRAME_SECTION_NAME.

From-SVN: r54228
parent 6933647a
2002-06-03 Richard Henderson <rth@redhat.com> 2002-06-03 Richard Henderson <rth@redhat.com>
* crtstuff.c (__EH_FRAME_BEGIN__): Conditionalize on
USE_EH_FRAME_REGISTRY, not EH_FRAME_SECTION_NAME.
2002-06-03 Richard Henderson <rth@redhat.com>
* config/alpha/alpha-protos.h: Eliminate unneeded ifdefs. * config/alpha/alpha-protos.h: Eliminate unneeded ifdefs.
* config/alpha/alpha.c (reg_or_0_operand): Use CONST0_RTX. * config/alpha/alpha.c (reg_or_0_operand): Use CONST0_RTX.
......
...@@ -187,13 +187,13 @@ STATIC func_ptr __DTOR_LIST__[1] ...@@ -187,13 +187,13 @@ STATIC func_ptr __DTOR_LIST__[1]
= { (func_ptr) (-1) }; = { (func_ptr) (-1) };
#endif /* __DTOR_LIST__ alternatives */ #endif /* __DTOR_LIST__ alternatives */
#ifdef EH_FRAME_SECTION_NAME #ifdef USE_EH_FRAME_REGISTRY
/* Stick a label at the beginning of the frame unwind info so we can register /* Stick a label at the beginning of the frame unwind info so we can register
and deregister it with the exception handling library code. */ and deregister it with the exception handling library code. */
STATIC char __EH_FRAME_BEGIN__[] STATIC char __EH_FRAME_BEGIN__[]
__attribute__((section(EH_FRAME_SECTION_NAME), aligned(4))) __attribute__((section(EH_FRAME_SECTION_NAME), aligned(4)))
= { }; = { };
#endif /* EH_FRAME_SECTION_NAME */ #endif /* USE_EH_FRAME_REGISTRY */
#ifdef JCR_SECTION_NAME #ifdef JCR_SECTION_NAME
/* Stick a label at the beginning of the java class registration info /* Stick a label at the beginning of the java class registration info
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment