From 248c29966c8ab5598e597fec16f121c4cb75bb1e Mon Sep 17 00:00:00 2001 From: Chad Rosier Date: Tue, 28 Feb 2012 00:23:01 +0000 Subject: Fix 80-column violation. llvm-svn: 151599 --- llvm/lib/CodeGen/MachineLICM.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'llvm/lib/CodeGen') diff --git a/llvm/lib/CodeGen/MachineLICM.cpp b/llvm/lib/CodeGen/MachineLICM.cpp index fda60563ed4..8014fec38a2 100644 --- a/llvm/lib/CodeGen/MachineLICM.cpp +++ b/llvm/lib/CodeGen/MachineLICM.cpp @@ -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; -- cgit v1.2.3