Fix 80-column violation.

llvm-svn: 151599
This commit is contained in:
Chad Rosier 2012-02-28 00:23:01 +00:00
parent c947412fae
commit 248c29966c
1 changed files with 2 additions and 2 deletions

View 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;