diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2017-01-02 21:25:48 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2017-01-02 21:25:48 +0000 | 
| commit | d88c1a5a572cdb661c111098831fa526e933756f (patch) | |
| tree | 97b32c3372106ac47ded3d1a99f9c023a8530073 /contrib/llvm/lib/Object/ObjectFile.cpp | |
| parent | 715652a404ee99f10c09c0a5edbb5883961b8c25 (diff) | |
| parent | b915e9e0fc85ba6f398b3fab0db6a81a8913af94 (diff) | |
Notes
Diffstat (limited to 'contrib/llvm/lib/Object/ObjectFile.cpp')
| -rw-r--r-- | contrib/llvm/lib/Object/ObjectFile.cpp | 10 | 
1 files changed, 7 insertions, 3 deletions
diff --git a/contrib/llvm/lib/Object/ObjectFile.cpp b/contrib/llvm/lib/Object/ObjectFile.cpp index 92f9c1f4f0a0..f36388b677f3 100644 --- a/contrib/llvm/lib/Object/ObjectFile.cpp +++ b/contrib/llvm/lib/Object/ObjectFile.cpp @@ -11,9 +11,10 @@  //  //===----------------------------------------------------------------------===// +#include "llvm/Object/ObjectFile.h"  #include "llvm/Object/COFF.h"  #include "llvm/Object/MachO.h" -#include "llvm/Object/ObjectFile.h" +#include "llvm/Object/Wasm.h"  #include "llvm/Support/ErrorHandling.h"  #include "llvm/Support/FileSystem.h"  #include "llvm/Support/MemoryBuffer.h" @@ -78,6 +79,7 @@ ObjectFile::createObjectFile(MemoryBufferRef Object, sys::fs::file_magic Type) {    switch (Type) {    case sys::fs::file_magic::unknown:    case sys::fs::file_magic::bitcode: +  case sys::fs::file_magic::coff_cl_gl_object:    case sys::fs::file_magic::archive:    case sys::fs::file_magic::macho_universal_binary:    case sys::fs::file_magic::windows_resource: @@ -104,6 +106,8 @@ ObjectFile::createObjectFile(MemoryBufferRef Object, sys::fs::file_magic Type) {    case sys::fs::file_magic::coff_import_library:    case sys::fs::file_magic::pecoff_executable:      return errorOrToExpected(createCOFFObjectFile(Object)); +  case sys::fs::file_magic::wasm_object: +    return createWasmObjectFile(Object);    }    llvm_unreachable("Unexpected Object File Type");  } @@ -118,8 +122,8 @@ ObjectFile::createObjectFile(StringRef ObjectPath) {    Expected<std::unique_ptr<ObjectFile>> ObjOrErr =        createObjectFile(Buffer->getMemBufferRef()); -  if (!ObjOrErr) -    ObjOrErr.takeError(); +  if (Error Err = ObjOrErr.takeError()) +    return std::move(Err);    std::unique_ptr<ObjectFile> Obj = std::move(ObjOrErr.get());    return OwningBinary<ObjectFile>(std::move(Obj), std::move(Buffer));  | 
