80-col fixup.
[oota-llvm.git] / lib / Transforms / Scalar / DCE.cpp
index 8d53443b389500957cdab746c661d478dfc505ee..a2e074fae8969c9bd0e133c99e22a864f753ad13 100644 (file)
@@ -118,7 +118,8 @@ bool DCE::runOnFunction(Function &F) {
       I->eraseFromParent();
 
       // Remove the instruction from the worklist if it still exists in it.
-      WorkList.erase(std::remove(WorkList.begin(), WorkList.end(), I), WorkList.end());
+      WorkList.erase(std::remove(WorkList.begin(), WorkList.end(), I),
+                     WorkList.end());
 
       MadeChange = true;
       ++DCEEliminated;