diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2013-02-07 00:12:03 +0100 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gcc.gnu.org> | 2013-02-07 00:12:03 +0100 |
commit | d09c7dba92c29a0182d2867d38adeea622f4facf (patch) | |
tree | b2a98a8c3c8dc9e3578e9e8deb84ba66d6e2d22b /gcc/config | |
parent | d617bce48cdc251c0b8c07713c03065d9c122aa2 (diff) | |
download | gcc-d09c7dba92c29a0182d2867d38adeea622f4facf.zip gcc-d09c7dba92c29a0182d2867d38adeea622f4facf.tar.gz gcc-d09c7dba92c29a0182d2867d38adeea622f4facf.tar.bz2 |
gnu.h (GNU_USER_TARGET_OS_CPP_BUILTINS): Never define MACH, just __MACH__.
gcc/
* config/gnu.h (GNU_USER_TARGET_OS_CPP_BUILTINS): Never define
MACH, just __MACH__.
From-SVN: r195826
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/gnu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/gnu.h b/gcc/config/gnu.h index 604ba8d..263b023 100644 --- a/gcc/config/gnu.h +++ b/gcc/config/gnu.h @@ -33,7 +33,7 @@ along with GCC. If not, see <http://www.gnu.org/licenses/>. builtin_define ("__gnu_hurd__"); \ builtin_define ("__GNU__"); \ builtin_define_std ("unix"); \ - builtin_define_std ("MACH"); \ + builtin_define ("__MACH__"); \ builtin_assert ("system=gnu"); \ builtin_assert ("system=mach"); \ builtin_assert ("system=unix"); \ |