forked from OSchip/llvm-project
[SLP] Check invariant that all instructions in bundle are in same block [NFC]
This commit is contained in:
parent
f3487c7be9
commit
8cb0ac5825
|
@ -2517,6 +2517,9 @@ private:
|
|||
"only bundle is marked scheduled");
|
||||
}
|
||||
}
|
||||
|
||||
assert(Inst->getParent() == FirstInBundle->Inst->getParent() &&
|
||||
"all bundle members must be in same basic block");
|
||||
}
|
||||
|
||||
/// Returns true if the dependency information has been calculated.
|
||||
|
|
Loading…
Reference in New Issue