Shuffle only selected sequence blocks.

This commit is contained in:
Martin Poirier
2009-03-28 22:01:07 +00:00
parent 145a441357
commit 4a164ce520

View File

@@ -4395,7 +4395,7 @@ void special_aftertrans_update(TransInfo *t)
for (machine = 0; machine <= max_machine; machine++)
{
for(seq= seqbasep->first; seq; seq= seq->next) {
if (seq->machine == machine && seq->depth==0 && seq->flag & SEQ_OVERLAP) {
if (seq->machine == machine && seq->depth == 0 && (seq->flag & (SEQ_LEFTSEL|SEQ_RIGHTSEL)) != 0 && (seq->flag & SEQ_OVERLAP)) {
shuffle_seq(seqbasep, seq);
}
}