There should be no need to keep renumbering blocks during tail duplication.
authorBob Wilson <bob.wilson@apple.com>
Wed, 18 Nov 2009 23:48:57 +0000 (23:48 +0000)
committerBob Wilson <bob.wilson@apple.com>
Wed, 18 Nov 2009 23:48:57 +0000 (23:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@89275 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/BranchFolding.cpp

index 871d6dc5765538bf3026fd6b4356639a730d472d..f807e8fa261ea1b517e0a1d21ab1ac5961ab91e3 100644 (file)
@@ -1011,9 +1011,6 @@ static bool IsBetterFallthrough(MachineBasicBlock *MBB1,
 bool BranchFolder::TailDuplicateBlocks(MachineFunction &MF) {
   bool MadeChange = false;
 
-  // Make sure blocks are numbered in order
-  MF.RenumberBlocks();
-
   for (MachineFunction::iterator I = ++MF.begin(), E = MF.end(); I != E; ) {
     MachineBasicBlock *MBB = I++;