diff options
author | Kai Tietz <kai.tietz@onevision.com> | 2010-09-29 18:55:44 +0000 |
---|---|---|
committer | Kai Tietz <ktietz@gcc.gnu.org> | 2010-09-29 20:55:44 +0200 |
commit | 0f23bc16605864cf7f41fab13a522004c3ee8c3a (patch) | |
tree | ca47a46b9770b62a5f2a3de45566615b465396fc /gcc | |
parent | d687413849f10f957c782eb4de2a54f3e78a7aae (diff) | |
download | gcc-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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/mingw32.h | 2 |
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 |