Add include guards.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180188 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Christopher 2013-04-24 14:49:26 +00:00
parent 13367123a8
commit fa2d2b199f

View File

@ -11,6 +11,9 @@
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_WRAP_H
#define LLVM_WRAP_H
#include "llvm-c/Core.h"
#include "llvm/IR/BasicBlock.h"
#include "llvm/IR/IRBuilder.h"
@ -117,3 +120,5 @@ namespace llvm {
return reinterpret_cast<LLVMValueRef*>(const_cast<Value**>(Vals));
}
}
#endif