aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Tietz <kai.tietz@onevision.com>2010-09-29 18:55:44 +0000
committerKai Tietz <ktietz@gcc.gnu.org>2010-09-29 20:55:44 +0200
commit0f23bc16605864cf7f41fab13a522004c3ee8c3a (patch)
treeca47a46b9770b62a5f2a3de45566615b465396fc
parentd687413849f10f957c782eb4de2a54f3e78a7aae (diff)
downloadgcc-0f23bc16605864cf7f41fab13a522004c3ee8c3a.zip
gcc-0f23bc16605864cf7f41fab13a522004c3ee8c3a.tar.gz
gcc-0f23bc16605864cf7f41fab13a522004c3ee8c3a.tar.bz2
mingw32.h (TARGET_64BIT): replaced by TARGET_64BIT_DEFAULT in #if check.
2010-09-29 Kai Tietz <kai.tietz@onevision.com> * config/i386/mingw32.h (TARGET_64BIT): replaced by TARGET_64BIT_DEFAULT in #if check. From-SVN: r164730
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/i386/mingw32.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index b3b94eb..a0da8d8 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2010-09-29 Kai Tietz <kai.tietz@onevision.com>
+
+ * config/i386/mingw32.h (TARGET_64BIT): replaced by
+ TARGET_64BIT_DEFAULT in #if check.
+
2010-09-29 Jack Howarth <howarth@bromo.med.uc.edu>
* varasm.c (assemble_alias): Add error message for
diff --git a/gcc/config/i386/mingw32.h b/gcc/config/i386/mingw32.h
index 0b0de2d..4f8a63a 100644
--- a/gcc/config/i386/mingw32.h
+++ b/gcc/config/i386/mingw32.h
@@ -223,7 +223,7 @@ __enable_execute_stack (void *addr) \
/* For 64-bit Windows we can't use DW2 unwind info. Also for multilib
builds we can't use it, too. */
-#if !TARGET_64BIT && !defined (TARGET_BI_ARCH)
+#if !TARGET_64BIT_DEFAULT && !defined (TARGET_BI_ARCH)
#define MD_UNWIND_SUPPORT "config/i386/w32-unwind.h"
#endif