From: Sebastian Redl Date: Sun, 24 Apr 2011 15:46:51 +0000 (+0000) Subject: Give SplitKit.h a header guard. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=6796e4fc889d99c4ad97ec5ad86e4c8cf75e52a4;p=oota-llvm.git Give SplitKit.h a header guard. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130095 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SplitKit.h b/lib/CodeGen/SplitKit.h index a8f59d44f6a..cccaace6f9e 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