sparc.h (TARGET_CPU_CPP_BUILTINS): Fix sparc vs sparc64 #cpu and #machine assertions.

* config/sparc/sparc.h (TARGET_CPU_CPP_BUILTINS): Fix sparc vs
	sparc64 #cpu and #machine assertions.

From-SVN: r73390
This commit is contained in:
Kaveh R. Ghazi 2003-11-09 14:05:10 +00:00 committed by Kaveh Ghazi
parent 7c752655e6
commit 8b93ca2dd2
2 changed files with 9 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2003-11-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* config/sparc/sparc.h (TARGET_CPU_CPP_BUILTINS): Fix sparc vs
sparc64 #cpu and #machine assertions.
2003-11-09 Richard Henderson <rth@redhat.com>
* Makefile.in (rtlanal.o): Depend on BASIC_BLOCK_H.

View file

@ -34,13 +34,13 @@ Boston, MA 02111-1307, USA. */
builtin_define_std ("sparc"); \
if (TARGET_64BIT) \
{ \
builtin_assert ("cpu=sparc"); \
builtin_assert ("machine=sparc"); \
builtin_assert ("cpu=sparc64"); \
builtin_assert ("machine=sparc64"); \
} \
else \
{ \
builtin_assert ("cpu=sparc64"); \
builtin_assert ("machine=sparc64"); \
builtin_assert ("cpu=sparc"); \
builtin_assert ("machine=sparc"); \
} \
} \
while (0)