diff options
author | Adrian Prantl <aprantl@apple.com> | 2017-11-02 20:58:58 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2017-11-02 20:58:58 +0000 |
commit | f2593d028fbaea554a6f499eb535b54e6d3b297a (patch) | |
tree | 146f7657c2202272e960e6506929f62cedf02af6 | |
parent | b695cd41b3f20d6c47c02337eb9d16bb88a47315 (diff) | |
download | bcm5719-llvm-f2593d028fbaea554a6f499eb535b54e6d3b297a.tar.gz bcm5719-llvm-f2593d028fbaea554a6f499eb535b54e6d3b297a.zip |
Add missing header guards.
llvm-svn: 317267
-rw-r--r-- | llvm/include/llvm-c/DebugInfo.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/include/llvm-c/DebugInfo.h b/llvm/include/llvm-c/DebugInfo.h index 15f6b57d883..2c2fdbdf173 100644 --- a/llvm/include/llvm-c/DebugInfo.h +++ b/llvm/include/llvm-c/DebugInfo.h @@ -14,6 +14,9 @@ /// //===----------------------------------------------------------------------===// +#ifndef LLVM_C_DEBUGINFO_H +#define LLVM_C_DEBUGINFO_H + #include "llvm-c/Core.h" #ifdef __cplusplus @@ -200,3 +203,5 @@ LLVMDIBuilderCreateDebugLocation(LLVMContextRef Ctx, unsigned Line, #ifdef __cplusplus } // end extern "C" #endif + +#endif |