This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Patches for egcs/OSR5 Was: controlling exception type per target
- To: Robert Lipe <robertl at dgii dot com>
- Subject: Re: Patches for egcs/OSR5 Was: controlling exception type per target
- From: Jason Merrill <jason at cygnus dot com>
- Date: 01 Oct 1997 23:06:43 -0700
- Cc: egcs at cygnus dot com
- References: <19970925123013.42080@dgii.com><19970928233930.41615.cygnus.egcs@dgii.com><u9pvpo29bg.fsf@yorick.cygnus.com> <19971002005834.63480@dgii.com>
>>>>> Robert Lipe <robertl@dgii.com> writes:
>> #ifdef DWARF2_UNWIND_INFO
>> exceptions_via_longjmp = DWARF2_UNWIND_INFO;
>> #endif
> The negative logic definitions took a while for me to grok.
Er, you're right. It should be !DWARF2_UNWIND_INFO.
> I'll leave submitting/applying that patch to you.
OK.
> ***************
> *** 563,569 ****
> ((TARGET_ELF) ? DWARF_DEBUG: SDB_DEBUG)
> #undef EXTRA_SECTIONS
> ! #define EXTRA_SECTIONS in_const, in_init, in_fini, in_ctors, in_dtors
> #undef EXTRA_SECTION_FUNCTIONS
> #define EXTRA_SECTION_FUNCTIONS \
> --- 574,580 ----
> ((TARGET_ELF) ? DWARF_DEBUG: SDB_DEBUG)
> #undef EXTRA_SECTIONS
> ! #define EXTRA_SECTIONS in_const, in_init, in_fini, in_ctors, in_dtors, in_eh
> #undef EXTRA_SECTION_FUNCTIONS
> #define EXTRA_SECTION_FUNCTIONS \
This hunk seems unnecessary. Other than that, looks fine.
Jason