Fix previous change

This commit is contained in:
Michael Meissner 1996-11-18 20:36:48 +00:00
parent ec5e212be2
commit d39e0e6d61
1 changed files with 3 additions and 1 deletions

View File

@ -734,7 +734,9 @@ write_2_short (opcode1, insn1, opcode2, insn2, exec_type, fx)
if (opcode1->exec_type & SEQ || opcode2->exec_type & SEQ)
as_fatal ("One of these instructions may not be executed in parallel.");
if ( !parallel_ok (opcode1, insn1, opcode2, insn2))
if ( !parallel_ok (opcode1, insn1, opcode2, insn2)
&& (opcode1->exec_type & PARONLY) == 0
&& (opcode2->exec_type & PARONLY) == 0)
as_fatal ("Two instructions may not be executed in parallel with each other.");
if (opcode1->unit == IU)