summaryrefslogtreecommitdiffstats
path: root/llvm/tools/llvm-cxxdump/llvm-cxxdump.cpp
diff options
context:
space:
mode:
authorKevin Enderby <enderby@apple.com>2016-06-24 18:24:42 +0000
committerKevin Enderby <enderby@apple.com>2016-06-24 18:24:42 +0000
commit931cb65df27d07f83c06f5a001a5368edf1655f9 (patch)
tree3dcdeca438903084244e98d5fd57711d3591998c /llvm/tools/llvm-cxxdump/llvm-cxxdump.cpp
parent267164df0ab6d1e61f1420feddee96b1938cb577 (diff)
downloadbcm5719-llvm-931cb65df27d07f83c06f5a001a5368edf1655f9.tar.gz
bcm5719-llvm-931cb65df27d07f83c06f5a001a5368edf1655f9.zip
Thread Expected<...> up from libObject’s getSymbolAddress() for symbols to allow
a good error message to be produced. This is nearly the last libObject interface that used ErrorOr and the last one that appears in llvm/include/llvm/Object/MachO.h . For Mach-O objects this is just a clean up because it’s version of getSymbolAddress() can’t return an error. I will leave it to the experts on COFF and ELF to actually add meaning full error messages in their tests if they wish. And also leave it to these experts to change the last two ErrorOr interfaces in llvm/include/llvm/Object/ObjectFile.h for createCOFFObjectFile() and createELFObjectFile() if they wish. Since there are no test cases for COFF and ELF error cases with respect to getSymbolAddress() in the test suite this is no functional change (NFC). llvm-svn: 273701
Diffstat (limited to 'llvm/tools/llvm-cxxdump/llvm-cxxdump.cpp')
-rw-r--r--llvm/tools/llvm-cxxdump/llvm-cxxdump.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/llvm-cxxdump/llvm-cxxdump.cpp b/llvm/tools/llvm-cxxdump/llvm-cxxdump.cpp
index 16ea629260d..0c408ccb5ba 100644
--- a/llvm/tools/llvm-cxxdump/llvm-cxxdump.cpp
+++ b/llvm/tools/llvm-cxxdump/llvm-cxxdump.cpp
@@ -190,8 +190,8 @@ static void dumpCXXData(const ObjectFile *Obj) {
continue;
StringRef SecContents;
error(Sec.getContents(SecContents));
- ErrorOr<uint64_t> SymAddressOrErr = Sym.getAddress();
- error(SymAddressOrErr.getError());
+ Expected<uint64_t> SymAddressOrErr = Sym.getAddress();
+ error(errorToErrorCode(SymAddressOrErr.takeError()));
uint64_t SymAddress = *SymAddressOrErr;
uint64_t SecAddress = Sec.getAddress();
uint64_t SecSize = Sec.getSize();
OpenPOWER on IntegriCloud