diff options
| author | Sebastian Redl <sebastian.redl@getdesigned.at> | 2011-04-24 15:46:51 +0000 |
|---|---|---|
| committer | Sebastian Redl <sebastian.redl@getdesigned.at> | 2011-04-24 15:46:51 +0000 |
| commit | b8a62aa3c907d7fd05151f26c14f9485505ff08a (patch) | |
| tree | 817c425968bc9cc8f9548e8bbb89e7b583aad86f /llvm/lib | |
| parent | 76e34f0175d37e2f3855277d82fb9904aea41e21 (diff) | |
| download | bcm5719-llvm-b8a62aa3c907d7fd05151f26c14f9485505ff08a.tar.gz bcm5719-llvm-b8a62aa3c907d7fd05151f26c14f9485505ff08a.zip | |
Give SplitKit.h a header guard.
llvm-svn: 130095
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/CodeGen/SplitKit.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SplitKit.h b/llvm/lib/CodeGen/SplitKit.h index a8f59d44f6a..cccaace6f9e 100644 --- a/llvm/lib/CodeGen/SplitKit.h +++ b/llvm/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 |

