diff options
author | Amaury Sechet <deadalnix@gmail.com> | 2016-04-07 06:35:00 +0000 |
---|---|---|
committer | Amaury Sechet <deadalnix@gmail.com> | 2016-04-07 06:35:00 +0000 |
commit | 33c161c02f4a30e29f60dba904a3ebe7edda0fb5 (patch) | |
tree | 7ddff1553de1e86436efde6288a319a67fe85b2c /llvm/lib/CodeGen | |
parent | 9ee4ddd710b53b4f110c1b0780ed2b87c560d5f0 (diff) | |
download | bcm5719-llvm-33c161c02f4a30e29f60dba904a3ebe7edda0fb5.tar.gz bcm5719-llvm-33c161c02f4a30e29f60dba904a3ebe7edda0fb5.zip |
[BlockPlacement] Remove an unnecessary continue
NFC.
llvm-svn: 265643
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/MachineBlockPlacement.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineBlockPlacement.cpp b/llvm/lib/CodeGen/MachineBlockPlacement.cpp index aeb59d1bb46..69c0a53fc92 100644 --- a/llvm/lib/CodeGen/MachineBlockPlacement.cpp +++ b/llvm/lib/CodeGen/MachineBlockPlacement.cpp @@ -809,7 +809,6 @@ MachineBlockPlacement::findBestLoopExit(MachineFunction &F, MachineLoop &L, // Restore the old exiting state, no viable looping successor was found. ExitingBB = OldExitingBB; BestExitEdgeFreq = OldBestExitEdgeFreq; - continue; } } // Without a candidate exiting block or with only a single block in the |