Commit 740b4585 by Michael Meissner

Eliminate statement not reached warning messages that the MIPS compiler generates.

From-SVN: r3987
parent 9d1bd99c
...@@ -4213,6 +4213,8 @@ move\\t%0,%z4\\n\\ ...@@ -4213,6 +4213,8 @@ move\\t%0,%z4\\n\\
"" ""
" "
{ {
if (operands[0]) /* silence statement not reached warnings */
{
int i; int i;
emit_call_insn (gen_call (operands[0], const0_rtx, NULL, const0_rtx)); emit_call_insn (gen_call (operands[0], const0_rtx, NULL, const0_rtx));
...@@ -4224,8 +4226,8 @@ move\\t%0,%z4\\n\\ ...@@ -4224,8 +4226,8 @@ move\\t%0,%z4\\n\\
} }
emit_insn (gen_blockage ()); emit_insn (gen_blockage ());
DONE; DONE;
}
}") }")
;; ;;
......
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