commit | 933b851485a32be1d22c0b14c0814427273f770e | [log] [tgz] |
---|---|---|
author | Alexey Samsonov <samsonov@google.com> | Tue Feb 05 07:01:34 2013 +0000 |
committer | Alexey Samsonov <samsonov@google.com> | Tue Feb 05 07:01:34 2013 +0000 |
tree | 1a27743ae804052116c6bd16718b0cbf780bd9bb | |
parent | e1b6b5290373073c95f6865ceaf76fa7848ecf44 [diff] [blame] |
Print error messages from MemoryBuffer::getFile() in llvm-symbolizer git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174346 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/tools/llvm-symbolizer/LLVMSymbolize.cpp b/tools/llvm-symbolizer/LLVMSymbolize.cpp index 42e76f8..227580f 100644 --- a/tools/llvm-symbolizer/LLVMSymbolize.cpp +++ b/tools/llvm-symbolizer/LLVMSymbolize.cpp
@@ -181,7 +181,8 @@ static ObjectFile *getObjectFile(const std::string &Path) { OwningPtr<MemoryBuffer> Buff; - MemoryBuffer::getFile(Path, Buff); + if (error_code ec = MemoryBuffer::getFile(Path, Buff)) + error(ec); return ObjectFile::createObjectFile(Buff.take()); }