From: Benjamin Kramer Date: Mon, 30 Jan 2017 16:32:20 +0000 (+0000) Subject: [Coroutines] Add header guard to header that's missing one. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eb8cfb32d2488004f8773788004d2adbd8aaf930;p=llvm [Coroutines] Add header guard to header that's missing one. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@293494 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Coroutines/CoroInstr.h b/lib/Transforms/Coroutines/CoroInstr.h index e03cef4bfc4..5c666bdfea1 100644 --- a/lib/Transforms/Coroutines/CoroInstr.h +++ b/lib/Transforms/Coroutines/CoroInstr.h @@ -23,6 +23,9 @@ // the Coroutine library. //===----------------------------------------------------------------------===// +#ifndef LLVM_LIB_TRANSFORMS_COROUTINES_COROINSTR_H +#define LLVM_LIB_TRANSFORMS_COROUTINES_COROINSTR_H + #include "llvm/IR/GlobalVariable.h" #include "llvm/IR/IntrinsicInst.h" @@ -316,3 +319,5 @@ public: }; } // End namespace llvm. + +#endif