diff options
author | Jeffrey Yasskin <jyasskin@google.com> | 2009-07-25 00:33:57 +0000 |
---|---|---|
committer | Jeffrey Yasskin <jyasskin@google.com> | 2009-07-25 00:33:57 +0000 |
commit | f595d6dd9a61c7387768d4e041539fcc6525a99b (patch) | |
tree | de927a484e33d54be65a97720d603361ae39ac47 /include/llvm/ADT/SparseBitVector.h | |
parent | 66ac53165e17b7c76b8c69e57bde623d44ec492e (diff) |
Add a missing ilist_node.h #include to SparseBitVector, and add a very short
test for it. The test is by no means complete, but it tests the problem I was
fixing.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77025 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT/SparseBitVector.h')
-rw-r--r-- | include/llvm/ADT/SparseBitVector.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/ADT/SparseBitVector.h b/include/llvm/ADT/SparseBitVector.h index bcb4aac8fb..f5bf431053 100644 --- a/include/llvm/ADT/SparseBitVector.h +++ b/include/llvm/ADT/SparseBitVector.h @@ -20,6 +20,7 @@ #include <cstring> #include "llvm/ADT/STLExtras.h" #include "llvm/ADT/ilist.h" +#include "llvm/ADT/ilist_node.h" #include "llvm/Support/DataTypes.h" #include "llvm/Support/MathExtras.h" #include "llvm/Support/raw_ostream.h" |