From 57302200378037b82b483e1ea18475f5e25344c4 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 11 Feb 2004 05:20:50 +0000 Subject: [PATCH] Remove obsolete comment. Unreachable blocks will automatically be left at the end of the function. llvm-svn: 11313 --- lib/Transforms/Scalar/BasicBlockPlacement.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/Transforms/Scalar/BasicBlockPlacement.cpp b/lib/Transforms/Scalar/BasicBlockPlacement.cpp index 482faaf8ecb..a25ab0f1215 100644 --- a/lib/Transforms/Scalar/BasicBlockPlacement.cpp +++ b/lib/Transforms/Scalar/BasicBlockPlacement.cpp @@ -80,8 +80,6 @@ bool BlockPlacement::runOnFunction(Function &F) { // Recursively place all blocks. PlaceBlocks(F.begin()); - // If there are any unreachable blocks, move them to the end. - PlacedBlocks.clear(); NumMoved += NumMovedBlocks; return NumMovedBlocks != 0;