aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-01-04 01:28:00 +0000
committerChris Lattner <sabre@nondot.org>2009-01-04 01:28:00 +0000
commit723a59c17eecad082f0c734d29553a5d392c24b2 (patch)
tree4eca5a6c30b5fcdc7c021211d1b93d33c2e7b886 /include
parentf225d2e4d667f78136610c70d607cf9207622f58 (diff)
downloadexternal_llvm-723a59c17eecad082f0c734d29553a5d392c24b2.zip
external_llvm-723a59c17eecad082f0c734d29553a5d392c24b2.tar.gz
external_llvm-723a59c17eecad082f0c734d29553a5d392c24b2.tar.bz2
add #include guards, thanks Dan.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61619 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/PredIteratorCache.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/llvm/Support/PredIteratorCache.h b/include/llvm/Support/PredIteratorCache.h
index 532d65e..2de2a02 100644
--- a/include/llvm/Support/PredIteratorCache.h
+++ b/include/llvm/Support/PredIteratorCache.h
@@ -16,6 +16,9 @@
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/SmallVector.h"
+#ifndef LLVM_SUPPORT_PREDITERATORCACHE_H
+#define LLVM_SUPPORT_PREDITERATORCACHE_H
+
namespace llvm {
/// PredIteratorCache - This class is an extremely trivial cache for
@@ -55,3 +58,5 @@ namespace llvm {
};
} // end namespace llvm
+#endif
+