summaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar/SCCP.cpp
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-03-28 00:35:33 +0000
committerChad Rosier <mcrosier@apple.com>2012-03-28 00:35:33 +0000
commitc2212f13f62b0372e8db9f5e48402703fdc977f6 (patch)
tree68aad7cdc0623391ad57d2ba4b97b8e925b7c3ae /lib/Transforms/Scalar/SCCP.cpp
parent701ea2b870045547fac2868bd8de9a4f596e0717 (diff)
downloadllvm-c2212f13f62b0372e8db9f5e48402703fdc977f6.tar.gz
llvm-c2212f13f62b0372e8db9f5e48402703fdc977f6.tar.bz2
llvm-c2212f13f62b0372e8db9f5e48402703fdc977f6.tar.xz
Fix 80-column violation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153556 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/SCCP.cpp')
-rw-r--r--lib/Transforms/Scalar/SCCP.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/Scalar/SCCP.cpp b/lib/Transforms/Scalar/SCCP.cpp
index 5ce82b9624..16b64a500b 100644
--- a/lib/Transforms/Scalar/SCCP.cpp
+++ b/lib/Transforms/Scalar/SCCP.cpp
@@ -1925,8 +1925,8 @@ bool IPSCCP::runOnModule(Module &M) {
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) {