[llvm-commits] [llvm] r153556 - /llvm/trunk/lib/Transforms/Scalar/SCCP.cpp
Chad Rosier
mcrosier at apple.com
Tue Mar 27 17:35:33 PDT 2012
Author: mcrosier
Date: Tue Mar 27 19:35:33 2012
New Revision: 153556
URL: http://llvm.org/viewvc/llvm-project?rev=153556&view=rev
Log:
Fix 80-column violation.
Modified:
llvm/trunk/lib/Transforms/Scalar/SCCP.cpp
Modified: llvm/trunk/lib/Transforms/Scalar/SCCP.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/SCCP.cpp?rev=153556&r1=153555&r2=153556&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/SCCP.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/SCCP.cpp Tue Mar 27 19:35:33 2012
@@ -1925,8 +1925,8 @@
ReturnsToZap[i]->setOperand(0, UndefValue::get(F->getReturnType()));
}
- // If we inferred constant or undef values for globals variables, we can delete
- // the global and any stores that remain to it.
+ // If we inferred constant or undef values for globals variables, we can
+ // delete the global and any stores that remain to it.
const DenseMap<GlobalVariable*, LatticeVal> &TG = Solver.getTrackedGlobals();
for (DenseMap<GlobalVariable*, LatticeVal>::const_iterator I = TG.begin(),
E = TG.end(); I != E; ++I) {
More information about the llvm-commits
mailing list