config/i386/cygming.h (DWARF2_UNWIND_INFO): Handle 64-bit
authorktietz <ktietz@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 11 Dec 2007 09:46:57 +0000 (09:46 +0000)
committerktietz <ktietz@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 11 Dec 2007 09:46:57 +0000 (09:46 +0000)
target same as 32-bit.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@130773 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/i386/cygming.h

index c2c0154..0918b3c 100644 (file)
@@ -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
index 6d1e1b1..ee2631b 100644 (file)
@@ -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