Fix 80-column violation.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151599 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/MachineLICM.cpp b/lib/CodeGen/MachineLICM.cpp
index fda6056..8014fec 100644
--- a/lib/CodeGen/MachineLICM.cpp
+++ b/lib/CodeGen/MachineLICM.cpp
@@ -1151,8 +1151,8 @@
         (!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;