From: Jakub Staszak Date: Tue, 16 Oct 2012 19:39:40 +0000 (+0000) Subject: 80-col fixup. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=59de622e8f2742c16b5a305ac5fe6d0814e7786b;p=oota-llvm.git 80-col fixup. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166050 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/DCE.cpp b/lib/Transforms/Scalar/DCE.cpp index 8d53443b389..a2e074fae89 100644 --- a/lib/Transforms/Scalar/DCE.cpp +++ b/lib/Transforms/Scalar/DCE.cpp @@ -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;