m68k.h (TARGET_CPU_CPP_BUILTINS): Predicate __mc68020__ on TARGET_68020.

* config/m68k/m68k.h (TARGET_CPU_CPP_BUILTINS): Predicate
	__mc68020__ on TARGET_68020.

From-SVN: r68647
This commit is contained in:
Neil Booth 2003-06-28 19:35:37 +00:00 committed by Neil Booth
parent 19cff4db3f
commit d551297825
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-06-28 Neil Booth <neil@daikokuya.co.uk>
* config/m68k/m68k.h (TARGET_CPU_CPP_BUILTINS): Predicate
__mc68020__ on TARGET_68020.
2003-06-28 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.c: Fix a comment typo.

View File

@ -29,7 +29,8 @@ Boston, MA 02111-1307, USA. */
do \
{ \
builtin_define ("__mc68000__"); \
builtin_define ("__mc68020__"); \
if (TARGET_68020) \
builtin_define ("__mc68020__"); \
builtin_define ("__m68k__"); \
builtin_assert ("cpu=m68k"); \
builtin_assert ("machine=m68k"); \