diff options
author | Haicheng Wu <haicheng@codeaurora.org> | 2016-04-05 15:37:08 +0000 |
---|---|---|
committer | Haicheng Wu <haicheng@codeaurora.org> | 2016-04-05 15:37:08 +0000 |
commit | 3618fa786f34227fc2f3cbf4334e27bd8e3826ea (patch) | |
tree | 882500d441700412a645a69bab702cb155b9e1ec /llvm/lib/CodeGen/MachineBlockPlacement.cpp | |
parent | d9f724e04ac19737b42ae8745a8ca1048565abbe (diff) | |
download | bcm5719-llvm-3618fa786f34227fc2f3cbf4334e27bd8e3826ea.tar.gz bcm5719-llvm-3618fa786f34227fc2f3cbf4334e27bd8e3826ea.zip |
[BlockPlacement] Remove an unnecessary continue
NFC.
llvm-svn: 265407
Diffstat (limited to 'llvm/lib/CodeGen/MachineBlockPlacement.cpp')
-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 67f2545aa96..74287f33eab 100644 --- a/llvm/lib/CodeGen/MachineBlockPlacement.cpp +++ b/llvm/lib/CodeGen/MachineBlockPlacement.cpp @@ -811,7 +811,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 |