Commit d5512978 by Neil Booth Committed by Neil Booth

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
parent 19cff4db
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> 2003-06-28 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.c: Fix a comment typo. * config/h8300/h8300.c: Fix a comment typo.
......
...@@ -29,7 +29,8 @@ Boston, MA 02111-1307, USA. */ ...@@ -29,7 +29,8 @@ Boston, MA 02111-1307, USA. */
do \ do \
{ \ { \
builtin_define ("__mc68000__"); \ builtin_define ("__mc68000__"); \
builtin_define ("__mc68020__"); \ if (TARGET_68020) \
builtin_define ("__mc68020__"); \
builtin_define ("__m68k__"); \ builtin_define ("__m68k__"); \
builtin_assert ("cpu=m68k"); \ builtin_assert ("cpu=m68k"); \
builtin_assert ("machine=m68k"); \ builtin_assert ("machine=m68k"); \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment