Commit 8b93ca2d by Kaveh R. Ghazi Committed by Kaveh Ghazi

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
parent 7c752655
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.
......
......@@ -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)
......
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