From 33c161c02f4a30e29f60dba904a3ebe7edda0fb5 Mon Sep 17 00:00:00 2001 From: Amaury Sechet Date: Thu, 7 Apr 2016 06:35:00 +0000 Subject: [PATCH] [BlockPlacement] Remove an unnecessary continue NFC. llvm-svn: 265643 --- llvm/lib/CodeGen/MachineBlockPlacement.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/llvm/lib/CodeGen/MachineBlockPlacement.cpp b/llvm/lib/CodeGen/MachineBlockPlacement.cpp index aeb59d1..69c0a53 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 -- 2.7.4