diff options
Diffstat (limited to 'include/llvm/CodeGen/LiveVariables.h')
-rw-r--r-- | include/llvm/CodeGen/LiveVariables.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/LiveVariables.h b/include/llvm/CodeGen/LiveVariables.h index aae76873d0..26c036269d 100644 --- a/include/llvm/CodeGen/LiveVariables.h +++ b/include/llvm/CodeGen/LiveVariables.h @@ -33,6 +33,7 @@ #include "llvm/ADT/BitVector.h" #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/SmallVector.h" +#include "llvm/ADT/SparseBitVector.h" namespace llvm { @@ -75,7 +76,7 @@ public: /// through. This is a bit set which uses the basic block number as an /// index. /// - BitVector AliveBlocks; + SparseBitVector<> AliveBlocks; /// NumUses - Number of uses of this register across the entire function. /// |