[libclc] r211432 - Fix breakage after r211259

Jeroen Ketema j.ketema at imperial.ac.uk
Sat Jun 21 02:20:32 PDT 2014


Author: jketema
Date: Sat Jun 21 04:20:31 2014
New Revision: 211432

URL: http://llvm.org/viewvc/llvm-project?rev=211432&view=rev
Log:
Fix breakage after r211259

While we are here introduce the proper headers for the error code.

Reviewed-by: Tom Stellard <tom at stellard.net>

Modified:
    libclc/trunk/utils/prepare-builtins.cpp

Modified: libclc/trunk/utils/prepare-builtins.cpp
URL: http://llvm.org/viewvc/llvm-project/libclc/trunk/utils/prepare-builtins.cpp?rev=211432&r1=211431&r2=211432&view=diff
==============================================================================
--- libclc/trunk/utils/prepare-builtins.cpp (original)
+++ libclc/trunk/utils/prepare-builtins.cpp Sat Jun 21 04:20:31 2014
@@ -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));





More information about the cfe-commits mailing list