summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorJeroen Ketema <j.ketema@imperial.ac.uk>2014-06-21 09:20:31 +0000
committerJeroen Ketema <j.ketema@imperial.ac.uk>2014-06-21 09:20:31 +0000
commita2daa48c4f97128532808ef511c50e4f9fe7b2e8 (patch)
tree6505f402561573e885642db98e992dd371aa7243 /utils
parent22a202d4adab68abac80ef67d4dcab5ec6a9e5dc (diff)
Fix breakage after r211259
While we are here introduce the proper headers for the error code. Reviewed-by: Tom Stellard <tom@stellard.net> git-svn-id: https://llvm.org/svn/llvm-project/libclc/trunk@211432 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/prepare-builtins.cpp20
1 files changed, 11 insertions, 9 deletions
diff --git a/utils/prepare-builtins.cpp b/utils/prepare-builtins.cpp
index c7f013f..20890ed 100644
--- a/utils/prepare-builtins.cpp
+++ b/utils/prepare-builtins.cpp
@@ -1,4 +1,3 @@
-#include "llvm/ADT/OwningPtr.h"
#include "llvm/Bitcode/ReaderWriter.h"
#include "llvm/IR/Function.h"
#include "llvm/IR/GlobalVariable.h"
@@ -13,17 +12,24 @@
#include "llvm/Support/ToolOutputFile.h"
#include "llvm/Config/config.h"
-using namespace llvm;
-
#define LLVM_350_AND_NEWER \
(LLVM_VERSION_MAJOR > 3 || (LLVM_VERSION_MAJOR == 3 && LLVM_VERSION_MINOR >= 5))
#if LLVM_350_AND_NEWER
+#include <system_error>
+
#define ERROR_CODE std::error_code
+#define UNIQUE_PTR std::unique_ptr
#else
+#include "llvm/ADT/OwningPtr.h"
+#include "llvm/Support/system_error.h"
+
#define ERROR_CODE error_code
+#define UNIQUE_PTR OwningPtr
#endif
+using namespace llvm;
+
static cl::opt<std::string>
InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
@@ -41,11 +47,7 @@ int main(int argc, char **argv) {
std::auto_ptr<Module> M;
{
-#if LLVM_VERSION_MAJOR > 3 || (LLVM_VERSION_MAJOR == 3 && LLVM_VERSION_MINOR > 4)
- std::unique_ptr<MemoryBuffer> BufferPtr;
-#else
- OwningPtr<MemoryBuffer> BufferPtr;
-#endif
+ UNIQUE_PTR<MemoryBuffer> BufferPtr;
if (ERROR_CODE ec = MemoryBuffer::getFileOrSTDIN(InputFilename, BufferPtr))
ErrorMessage = ec.message();
else {
@@ -87,7 +89,7 @@ int main(int argc, char **argv) {
}
std::string ErrorInfo;
- OwningPtr<tool_output_file> Out
+ UNIQUE_PTR<tool_output_file> Out
(new tool_output_file(OutputFilename.c_str(), ErrorInfo,
#if (LLVM_VERSION_MAJOR == 3 && LLVM_VERSION_MINOR == 4)
sys::fs::F_Binary));