mirror of
https://github.com/RPCSX/llvm.git
synced 2025-03-04 02:47:25 +00:00
[Sink] Don't check BB.empty()
As an invariant, BasicBlocks cannot be empty when passed to a transform. This is not the case for MachineBasicBlocks and the Sink pass was ported from the MachineSink pass which would explain the check's existence. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@251057 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2afd3e1209
commit
e6a5192692
@ -119,7 +119,7 @@ bool Sinking::runOnFunction(Function &F) {
|
||||
|
||||
bool Sinking::ProcessBlock(BasicBlock &BB) {
|
||||
// Can't sink anything out of a block that has less than two successors.
|
||||
if (BB.getTerminator()->getNumSuccessors() <= 1 || BB.empty()) return false;
|
||||
if (BB.getTerminator()->getNumSuccessors() <= 1) return false;
|
||||
|
||||
// Don't bother sinking code out of unreachable blocks. In addition to being
|
||||
// unprofitable, it can also lead to infinite looping, because in an
|
||||
|
Loading…
x
Reference in New Issue
Block a user