Commit b3cb08bd by Kai Tietz Committed by Kai Tietz

config/i386/cygming.h (DWARF2_UNWIND_INFO): Handle 64-bit

target same as 32-bit.

From-SVN: r130773
parent 7389bce6
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
......
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