From: Janis Johnson Date: Tue, 10 Jun 2003 16:01:39 +0000 (+0000) Subject: eabi.h (TARGET_OS_CPP_BUILTINS): Define builtins common to rs6000 sysv targets. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bb8f5288ed1cdcd8147055dda13d25fca76d5085;p=gcc.git eabi.h (TARGET_OS_CPP_BUILTINS): Define builtins common to rs6000 sysv targets. * config/rs6000/eabi.h (TARGET_OS_CPP_BUILTINS): Define builtins common to rs6000 sysv targets. * config/rs6000/eabisim.h (TARGET_OS_CPP_BUILTINS): Ditto. * config/rs6000/rtems.h (TARGET_OS_CPP_BUILTINS): Ditto. From-SVN: r67708 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 971ca02a9e5..857027cf0fd 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2003-06-10 Janis Johnson + + * config/rs6000/eabi.h (TARGET_OS_CPP_BUILTINS): Define builtins + common to rs6000 sysv targets. + * config/rs6000/eabisim.h (TARGET_OS_CPP_BUILTINS): Ditto. + * config/rs6000/rtems.h (TARGET_OS_CPP_BUILTINS): Ditto. + 2003-06-10 Nick Clifton * config.gcc: Add arm-wince-pe target. diff --git a/gcc/config/rs6000/eabi.h b/gcc/config/rs6000/eabi.h index 0349ba158a2..ff8df2c3e41 100644 --- a/gcc/config/rs6000/eabi.h +++ b/gcc/config/rs6000/eabi.h @@ -40,6 +40,7 @@ builtin_assert ("system=embedded"); \ builtin_assert ("cpu=powerpc"); \ builtin_assert ("machine=powerpc"); \ + TARGET_OS_SYSV_CPP_BUILTINS (); \ } \ while (0) diff --git a/gcc/config/rs6000/eabisim.h b/gcc/config/rs6000/eabisim.h index e40008cc1e5..5e0900d9c1e 100644 --- a/gcc/config/rs6000/eabisim.h +++ b/gcc/config/rs6000/eabisim.h @@ -34,6 +34,7 @@ builtin_assert ("system=simulator"); \ builtin_assert ("cpu=powerpc"); \ builtin_assert ("machine=powerpc"); \ + TARGET_OS_SYSV_CPP_BUILTINS (); \ } \ while (0) diff --git a/gcc/config/rs6000/rtems.h b/gcc/config/rs6000/rtems.h index f780ff49957..0245269203b 100644 --- a/gcc/config/rs6000/rtems.h +++ b/gcc/config/rs6000/rtems.h @@ -30,6 +30,7 @@ builtin_assert ("system=rtems"); \ builtin_assert ("cpu=powerpc"); \ builtin_assert ("machine=powerpc"); \ + TARGET_OS_SYSV_CPP_BUILTINS (); \ } \ while (0)