From: Evan Cheng Date: Thu, 12 May 2011 22:35:48 +0000 (+0000) Subject: Update comment. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=6175e03825070f53b17deeb9156935ac1ac06672;p=oota-llvm.git Update comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@131258 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/BranchFolding.cpp b/lib/CodeGen/BranchFolding.cpp index 0ca54ac3865..6fafc758d05 100644 --- a/lib/CodeGen/BranchFolding.cpp +++ b/lib/CodeGen/BranchFolding.cpp @@ -1351,8 +1351,6 @@ ReoptimizeBlock: /// HoistCommonCode - Hoist common instruction sequences at the start of basic /// blocks to their common predecessor. -/// NOTE: This optimization does not update live-in information so it must be -/// run after all passes that require correct liveness information. bool BranchFolder::HoistCommonCode(MachineFunction &MF) { bool MadeChange = false; for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ) {