Fix 80-column violation.
authorChad Rosier <mcrosier@apple.com>
Tue, 28 Feb 2012 00:23:01 +0000 (00:23 +0000)
committerChad Rosier <mcrosier@apple.com>
Tue, 28 Feb 2012 00:23:01 +0000 (00:23 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151599 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/MachineLICM.cpp

index fda60563ed4058c219267fa51e7f1f0d1897490c..8014fec38a27ad21185d14cce81b8e85c94b1237 100644 (file)
@@ -1151,8 +1151,8 @@ bool MachineLICM::IsProfitableToHoist(MachineInstr &MI) {
         (!IsGuaranteedToExecute(MI.getParent()) && !MayCSE(&MI)))
       return false;
 
-    // High register pressure situation, only hoist if the instruction is going to
-    // be remat'ed.
+    // High register pressure situation, only hoist if the instruction is going
+    // to be remat'ed.
     if (!TII->isTriviallyReMaterializable(&MI, AA) &&
         !MI.isInvariantLoad(AA))
       return false;