diff options
author | Neil Booth <neil@gcc.gnu.org> | 2003-03-09 22:01:15 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2003-03-09 22:01:15 +0000 |
commit | cc956ba2cb4d72bf79fd508b96a0e5aefb8b4882 (patch) | |
tree | 65d0d6a17e094bd608d3cc8c6cf1bb99cb3cb3a8 /gcc/config/m32r | |
parent | 6544fbcb2ae41e065b956179bbc6cf7176c8901e (diff) | |
download | gcc-cc956ba2cb4d72bf79fd508b96a0e5aefb8b4882.zip gcc-cc956ba2cb4d72bf79fd508b96a0e5aefb8b4882.tar.gz gcc-cc956ba2cb4d72bf79fd508b96a0e5aefb8b4882.tar.bz2 |
frv.h: Use TARGET_CPU_CPP_BUILTINS, not CPP_PREDEFINES.
* config/frv/frv.h: Use TARGET_CPU_CPP_BUILTINS, not CPP_PREDEFINES.
* config/ip2k/ip2k.h: Similarly.
* config/m32r/m32r.h: Similarly.
* config/m68hc11/m68hc11.h: Similarly.
* config/mn10200/mn10200.h: Similarly.
* config/mn10300/mn10300.h: Similarly.
* config/pdp11/pdp11.h: Similarly.
* config/v850/v850.h: Similarly.
* config/rs6000/vxworks.h: Similarly for TARGET_OS_CPP_BUILTINS.
* config/v850/retms.h: Similarly for TARGET_OS_CPP_BUILTINS.
* config/mips/iris3.h: Remove #if 0 block.
From-SVN: r64049
Diffstat (limited to 'gcc/config/m32r')
-rw-r--r-- | gcc/config/m32r/m32r.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gcc/config/m32r/m32r.h b/gcc/config/m32r/m32r.h index 74431b6..0c48b3e 100644 --- a/gcc/config/m32r/m32r.h +++ b/gcc/config/m32r/m32r.h @@ -105,7 +105,14 @@ Boston, MA 02111-1307, USA. */ /* Names to predefine in the preprocessor for this target machine. */ /* __M32R__ is defined by the existing compiler so we use that. */ -#define CPP_PREDEFINES "-Acpu=m32r -Amachine=m32r -D__M32R__" +#define TARGET_CPU_CPP_BUILTINS() \ + do \ + { \ + builtin_define ("__M32R__"); \ + builtin_assert ("cpu=m32r"); \ + builtin_assert ("machine=m32r"); \ + } \ + while (0) /* This macro defines names of additional specifications to put in the specs that can be used in various specifications like CC1_SPEC. Its definition |