diff options
author | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-09 21:36:20 +0000 |
---|---|---|
committer | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-09 21:36:20 +0000 |
commit | a6881cf34e63f36838e5ebe2ca70f9f1d23dbff0 (patch) | |
tree | 723f2802719575de5ff62a84c4285e1397b7da80 /gcc/crtstuff.c | |
parent | d119628bf83b31aa17d83329dc80074e63786de9 (diff) | |
download | gcc-a6881cf34e63f36838e5ebe2ca70f9f1d23dbff0.tar.gz |
* defaults.h (EH_FRAME_SECTION, EH_FRAME_SECTION_ASM_OP): Define here.
* crtstuff.c: Not here.
* dwarf2out.c: Or here.
* libgcc2.c (__do_global_ctors, __do_global_dtors): Handle EH frame
info.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29241 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/crtstuff.c')
-rw-r--r-- | gcc/crtstuff.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gcc/crtstuff.c b/gcc/crtstuff.c index ccebde1d2c9..6ce1c863acf 100644 --- a/gcc/crtstuff.c +++ b/gcc/crtstuff.c @@ -1,6 +1,6 @@ /* Specialized bits of code needed to support construction and destruction of file-scope objects in C++ code. - Copyright (C) 1991, 94, 95, 96, 97, 1998 Free Software Foundation, Inc. + Copyright (C) 1991, 1994-1999 Free Software Foundation, Inc. Contributed by Ron Guilmette (rfg@monkeys.com). This file is part of GNU CC. @@ -108,9 +108,6 @@ extern void *__deregister_frame_info (void *) #ifndef DTORS_SECTION_ASM_OP #define DTORS_SECTION_ASM_OP ".section\t.dtors,\"aw\"" #endif -#if !defined (EH_FRAME_SECTION_ASM_OP) && defined (DWARF2_UNWIND_INFO) && defined(ASM_OUTPUT_SECTION_NAME) -#define EH_FRAME_SECTION_ASM_OP ".section\t.eh_frame,\"aw\"" -#endif #ifdef OBJECT_FORMAT_ELF |