Commit 28e9a3f3 by Richard Sandiford Committed by Richard Sandiford

re PR target/16830 (Including <sys/immu.h> with -mabi=n32 causes an error.)

	PR target/16830
	* config/mips/mips.h (TARGET_CPU_CPP_BUILTINS): Don't define the
	R3000 and R4000 macros on IRIX.

From-SVN: r90195
parent 3c871f3f
2004-11-06 Richard Sandiford <rsandifo@redhat.com>
PR target/16830
* config/mips/mips.h (TARGET_CPU_CPP_BUILTINS): Don't define the
R3000 and R4000 macros on IRIX.
2004-11-06 Andreas Schwab <schwab@suse.de>
PR target/16286
......
......@@ -393,18 +393,24 @@ extern const struct mips_cpu_info *mips_tune_info;
if (!flag_iso) \
builtin_define ("mips"); \
\
/* Treat _R3000 and _R4000 like register-size defines, \
which is how they've historically been used. */ \
if (TARGET_64BIT) \
builtin_define ("__mips64"); \
\
if (!TARGET_IRIX) \
{ \
builtin_define ("__mips64"); \
builtin_define_std ("R4000"); \
builtin_define ("_R4000"); \
} \
else \
{ \
builtin_define_std ("R3000"); \
builtin_define ("_R3000"); \
/* Treat _R3000 and _R4000 like register-size \
defines, which is how they've historically \
been used. */ \
if (TARGET_64BIT) \
{ \
builtin_define_std ("R4000"); \
builtin_define ("_R4000"); \
} \
else \
{ \
builtin_define_std ("R3000"); \
builtin_define ("_R3000"); \
} \
} \
if (TARGET_FLOAT64) \
builtin_define ("__mips_fpr=64"); \
......
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