m32r_insn * a;
m32r_insn * b;
{
+/* start-sanitize-m32rx */
PIPE_ATTR a_pipe;
PIPE_ATTR b_pipe;
|| b_pipe == PIPE_O)
return "Instructions share the same execution pipeline";
+/* end-sanitize-m32rx */
if ( writes_to_dest_reg (a->insn)
&& writes_to_dest_reg (b->insn)
&& (get_dest_reg (a->fields) == get_dest_reg (b->fields)))
as_bad (errmsg);
return;
}
-
+
+/* start-sanitize-m32rx */
/* Check to see if this is an allowable parallel insn. */
if (CGEN_INSN_ATTR (first.insn, CGEN_INSN_PIPE) == PIPE_NONE)
{
as_bad ("instruction '%s' is for the M32RX only", str);
return;
}
+/* end-sanitize-m32rx */
*str2 = '|'; /* Restore the original assembly text, just in case it is needed. */
str3 = str; /* Save the original string pointer. */
return;
}
+/* start-sanitize-m32rx */
/* Check it. */
if (! enable_m32rx
&& CGEN_INSN_ATTR (second.insn, CGEN_INSN_MACH) == (1 << MACH_M32RX))
return;
}
}
+/* end-sanitize-m32rx */
/* We assume that if the first instruction writes to a register that is
read by the second instruction it is because the programmer intended