Commit 740b4585 by Michael Meissner

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

From-SVN: r3987
parent 9d1bd99c
...@@ -4213,19 +4213,21 @@ move\\t%0,%z4\\n\\ ...@@ -4213,19 +4213,21 @@ move\\t%0,%z4\\n\\
"" ""
" "
{ {
int i; if (operands[0]) /* silence statement not reached warnings */
emit_call_insn (gen_call (operands[0], const0_rtx, NULL, const0_rtx));
for (i = 0; i < XVECLEN (operands[2], 0); i++)
{ {
rtx set = XVECEXP (operands[2], 0, i); int i;
emit_move_insn (SET_DEST (set), SET_SRC (set));
} emit_call_insn (gen_call (operands[0], const0_rtx, NULL, const0_rtx));
emit_insn (gen_blockage ()); for (i = 0; i < XVECLEN (operands[2], 0); i++)
{
rtx set = XVECEXP (operands[2], 0, i);
emit_move_insn (SET_DEST (set), SET_SRC (set));
}
DONE; emit_insn (gen_blockage ());
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