1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 11:33:24 +02:00

Add include guards.

llvm-svn: 180188
This commit is contained in:
Eric Christopher 2013-04-24 14:49:26 +00:00
parent 50425bfc27
commit 00aed6af7d

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