config/i386/cygming.h (DWARF2_UNWIND_INFO): Handle 64-bit
target same as 32-bit. From-SVN: r130773
This commit is contained in:
parent
7389bce6b9
commit
b3cb08bd27
2 changed files with 8 additions and 5 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-12-11 Kai Tietz <kai.tietz@onevision.com>
|
||||
|
||||
* config/i386/cygming.h (DWARF2_UNWIND_INFO): Handle 64-bit
|
||||
target same as 32-bit.
|
||||
|
||||
2007-12-10 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR tree-optimization/34371
|
||||
|
|
|
@ -277,11 +277,9 @@ do { \
|
|||
#define ASM_COMMENT_START " #"
|
||||
|
||||
#ifndef DWARF2_UNWIND_INFO
|
||||
/* 64-bit target uses DWARF2 unwind by default. If 32-bit target
|
||||
configured with --disable-sjlj-exceptions, use DWARF2, else default
|
||||
to SJLJ. */
|
||||
#if TARGET_64BIT_DEFAULT \
|
||||
|| (defined (CONFIG_SJLJ_EXCEPTIONS) && !CONFIG_SJLJ_EXCEPTIONS)
|
||||
/* If configured with --disable-sjlj-exceptions, use DWARF2, else
|
||||
default to SJLJ. */
|
||||
#if (defined (CONFIG_SJLJ_EXCEPTIONS) && !CONFIG_SJLJ_EXCEPTIONS)
|
||||
#define DWARF2_UNWIND_INFO 1
|
||||
#else
|
||||
#define DWARF2_UNWIND_INFO 0
|
||||
|
|
Loading…
Add table
Reference in a new issue