aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar/ADCE.cpp
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2008-07-02 17:32:04 +0000
committerOwen Anderson <resistor@mac.com>2008-07-02 17:32:04 +0000
commit2c04b0da2b23e812cb1c15bb2bd6aac33b34364d (patch)
treef335239b35febc0050006688aa164becade89d71 /lib/Transforms/Scalar/ADCE.cpp
parent93ee2fd7da6100eafcc510cfdeb71f2bfdd15429 (diff)
Use DenseSet rather than SmallPtrSet for the alive set. Using SmallPtrSet
with a huge "size" parameter is actually quite inefficient. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53034 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/ADCE.cpp')
-rw-r--r--lib/Transforms/Scalar/ADCE.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/Scalar/ADCE.cpp b/lib/Transforms/Scalar/ADCE.cpp
index 960ce8f5e9..b9b828dde0 100644
--- a/lib/Transforms/Scalar/ADCE.cpp
+++ b/lib/Transforms/Scalar/ADCE.cpp
@@ -21,7 +21,7 @@
#include "llvm/Support/Compiler.h"
#include "llvm/Support/InstIterator.h"
#include "llvm/ADT/Statistic.h"
-#include "llvm/ADT/SmallPtrSet.h"
+#include "llvm/ADT/DenseSet.h"
#include "llvm/ADT/SmallVector.h"
using namespace llvm;
@@ -33,7 +33,7 @@ namespace {
static char ID; // Pass identification, replacement for typeid
ADCE() : FunctionPass((intptr_t)&ID) {}
- SmallPtrSet<Instruction*, 1024> alive;
+ DenseSet<Instruction*> alive;
SmallVector<Instruction*, 1024> worklist;
virtual bool runOnFunction(Function& F);