80-col fixup.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166050 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jakub Staszak 2012-10-16 19:39:40 +00:00
parent 272ea03239
commit 59de622e8f

View 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;