summaryrefslogtreecommitdiff
path: root/lib/CodeGen/SplitKit.h
diff options
context:
space:
mode:
authorSebastian Redl <sebastian.redl@getdesigned.at>2011-04-24 15:46:51 +0000
committerSebastian Redl <sebastian.redl@getdesigned.at>2011-04-24 15:46:51 +0000
commit6796e4fc889d99c4ad97ec5ad86e4c8cf75e52a4 (patch)
tree29713a3a7d926e51ddb4d18e8ce6f42eab283c76 /lib/CodeGen/SplitKit.h
parentf462ab431f76292d939aa3adac2101a18407077d (diff)
downloadllvm-6796e4fc889d99c4ad97ec5ad86e4c8cf75e52a4.tar.gz
llvm-6796e4fc889d99c4ad97ec5ad86e4c8cf75e52a4.tar.bz2
llvm-6796e4fc889d99c4ad97ec5ad86e4c8cf75e52a4.tar.xz
Give SplitKit.h a header guard.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130095 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SplitKit.h')
-rw-r--r--lib/CodeGen/SplitKit.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/CodeGen/SplitKit.h b/lib/CodeGen/SplitKit.h
index a8f59d44f6..cccaace6f9 100644
--- a/lib/CodeGen/SplitKit.h
+++ b/lib/CodeGen/SplitKit.h
@@ -12,6 +12,9 @@
//
//===----------------------------------------------------------------------===//
+#ifndef LLVM_CODEGEN_SPLITKIT_H
+#define LLVM_CODEGEN_SPLITKIT_H
+
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/BitVector.h"
#include "llvm/ADT/DenseMap.h"
@@ -389,3 +392,5 @@ public:
};
}
+
+#endif