[llvm-commits] [llvm] r151599 - /llvm/trunk/lib/CodeGen/MachineLICM.cpp
Chad Rosier
mcrosier at apple.com
Mon Feb 27 16:23:01 PST 2012
Author: mcrosier
Date: Mon Feb 27 18:23:01 2012
New Revision: 151599
URL: http://llvm.org/viewvc/llvm-project?rev=151599&view=rev
Log:
Fix 80-column violation.
Modified:
llvm/trunk/lib/CodeGen/MachineLICM.cpp
Modified: llvm/trunk/lib/CodeGen/MachineLICM.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/MachineLICM.cpp?rev=151599&r1=151598&r2=151599&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/MachineLICM.cpp (original)
+++ llvm/trunk/lib/CodeGen/MachineLICM.cpp Mon Feb 27 18:23:01 2012
@@ -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;
More information about the llvm-commits
mailing list