Commit 94b2a23b by Rainer Orth Committed by Rainer Orth

* config/mips/mips.md (trap): Use break 0 when !TARGET_GAS.

From-SVN: r68112
parent 1f11df32
2003-06-17 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
* config/mips/mips.md (trap): Use break 0 when !TARGET_GAS.
* config/mips/iris6-o32.h (MIPS_ISA_DEFAULT): Remove.
(MIPS_CPU_STRING_DEFAULT): Redefine to mips2.
......
......@@ -640,7 +640,8 @@
{
if (ISA_HAS_COND_TRAP)
return \"teq\\t$0,$0\";
else if (TARGET_MIPS16)
/* The IRIX 6 O32 assembler requires the first break operand. */
else if (TARGET_MIPS16 || ! TARGET_GAS)
return \"break 0\";
else
return \"break\";
......
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