diff options
author | Chris Lattner <sabre@nondot.org> | 2003-11-21 16:52:05 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-11-21 16:52:05 +0000 |
commit | 108e4ab159b59a616b0868e396dc7ddc1fb48616 (patch) | |
tree | fa6892850c59a118e0538ff21d0beb01f2d5ce0b /lib/Transforms/Scalar/ADCE.cpp | |
parent | 2436eda94ac811d338a03c50ef82b66e37ddd56f (diff) |
Minor cleanups and simplifications
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10127 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/ADCE.cpp')
-rw-r--r-- | lib/Transforms/Scalar/ADCE.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/ADCE.cpp b/lib/Transforms/Scalar/ADCE.cpp index 5a5151e8b6..4d7efd8ae4 100644 --- a/lib/Transforms/Scalar/ADCE.cpp +++ b/lib/Transforms/Scalar/ADCE.cpp @@ -302,7 +302,7 @@ bool ADCE::doADCE() { // if (!AliveBlocks.count(&Func->front())) { BasicBlock *NewEntry = new BasicBlock(); - new BranchInst(&Func->front(), 0, 0, NewEntry); + new BranchInst(&Func->front(), NewEntry); Func->getBasicBlockList().push_front(NewEntry); AliveBlocks.insert(NewEntry); // This block is always alive! LiveSet.insert(NewEntry->getTerminator()); // The branch is live |