summaryrefslogtreecommitdiff
path: root/lib/CodeGen/MachineLICM.cpp
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-02-28 00:23:01 +0000
committerChad Rosier <mcrosier@apple.com>2012-02-28 00:23:01 +0000
commit921c9bd91f59937e25e754e19832c40b2f130d63 (patch)
treea02034d69be3c0c8e5cfe999c125afdb51e651f5 /lib/CodeGen/MachineLICM.cpp
parent2cff6179ab40fc92ec5b6302b9ab5f7b0ee1e513 (diff)
downloadllvm-921c9bd91f59937e25e754e19832c40b2f130d63.tar.gz
llvm-921c9bd91f59937e25e754e19832c40b2f130d63.tar.bz2
llvm-921c9bd91f59937e25e754e19832c40b2f130d63.tar.xz
Fix 80-column violation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151599 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineLICM.cpp')
-rw-r--r--lib/CodeGen/MachineLICM.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/MachineLICM.cpp b/lib/CodeGen/MachineLICM.cpp
index fda60563ed..8014fec38a 100644
--- a/lib/CodeGen/MachineLICM.cpp
+++ b/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;