diff options
author | Thomas Schwinge <thomas@schwinge.name> | 2010-10-06 09:49:52 +0200 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gcc.gnu.org> | 2010-10-06 09:49:52 +0200 |
commit | 28ce2f29b89c076138efd52cef11f1b0a799cd92 (patch) | |
tree | 4e83d359e058ddcc72ea3e53f9393c4a8c6aec3b /gcc | |
parent | 933bc2328e2462656834b41f9db5eb20e75aaa17 (diff) | |
download | gcc-28ce2f29b89c076138efd52cef11f1b0a799cd92.zip gcc-28ce2f29b89c076138efd52cef11f1b0a799cd92.tar.gz gcc-28ce2f29b89c076138efd52cef11f1b0a799cd92.tar.bz2 |
re PR target/45901 (alpha-gnu target-specific CPP macros are broken)
2010-10-06 Thomas Schwinge <thomas@schwinge.name>
PR target/45901
* config/alpha/gnu.h (TARGET_OS_CPP_BUILTINS): Refer to
LINUX_TARGET_OS_CPP_BUILTINS instead of HURD_TARGET_OS_CPP_BUILTINS.
From-SVN: r165014
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/alpha/gnu.h | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1061761..98b79df 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2010-10-06 Thomas Schwinge <thomas@schwinge.name> + + PR target/45901 + * config/alpha/gnu.h (TARGET_OS_CPP_BUILTINS): Refer to + LINUX_TARGET_OS_CPP_BUILTINS instead of HURD_TARGET_OS_CPP_BUILTINS. + 2010-10-06 Jakub Jelinek <jakub@redhat.com> * builtins.def (BUILT_IN_CALLOC, BUILT_IN_REALLOC, diff --git a/gcc/config/alpha/gnu.h b/gcc/config/alpha/gnu.h index f98c3e7..ca71980 100644 --- a/gcc/config/alpha/gnu.h +++ b/gcc/config/alpha/gnu.h @@ -1,6 +1,6 @@ /* Configuration for an Alpha running GNU with ELF as the target machine. -Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. +Copyright (C) 2002, 2003, 2004, 2010 Free Software Foundation, Inc. This file is part of GCC. @@ -29,7 +29,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #undef TARGET_OS_CPP_BUILTINS /* config.gcc includes alpha/linux.h. */ #define TARGET_OS_CPP_BUILTINS() \ do { \ - HURD_TARGET_OS_CPP_BUILTINS(); \ + LINUX_TARGET_OS_CPP_BUILTINS(); \ builtin_define ("_LONGLONG"); \ } while (0) |