Fix 80-column violation.
authorChad Rosier <mcrosier@apple.com>
Wed, 28 Mar 2012 00:35:33 +0000 (00:35 +0000)
committerChad Rosier <mcrosier@apple.com>
Wed, 28 Mar 2012 00:35:33 +0000 (00:35 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153556 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/SCCP.cpp

index 5ce82b96245d5a50f2c77268181b4a8a95e2377d..16b64a500b34bdaeb3bfc117d23f43a042b1ba82 100644 (file)
@@ -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) {