diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2011-11-27 10:37:47 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2011-11-27 10:37:47 +0000 |
commit | 37ab257b88fe1b3c006bb513f8991168b066d402 (patch) | |
tree | fecd58abcc0e31f48e8338bb194408b62f915432 /llvm/lib/Object/Object.cpp | |
parent | 9e4668415495f396200b525ba4868c42abe2c9bd (diff) | |
download | bcm5719-llvm-37ab257b88fe1b3c006bb513f8991168b066d402.tar.gz bcm5719-llvm-37ab257b88fe1b3c006bb513f8991168b066d402.zip |
Revert r145180 as it is causing test failures on all the bots.
Original commit message:
Fixed ObjectFile functions:
- getSymbolOffset() renamed as getSymbolFileOffset()
- getSymbolFileOffset(), getSymbolAddress(), getRelocationAddress() returns same result for ELFObjectFile, MachOObjectFile and COFFObjectFile.
- added getRelocationOffset()
- fixed MachOObjectFile::getSymbolSize()
- fixed MachOObjectFile::getSymbolSection()
- fixed MachOObjectFile::getSymbolOffset() for symbols without section data.
llvm-svn: 145182
Diffstat (limited to 'llvm/lib/Object/Object.cpp')
-rw-r--r-- | llvm/lib/Object/Object.cpp | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/llvm/lib/Object/Object.cpp b/llvm/lib/Object/Object.cpp index f061ea7cebe..719bf882f22 100644 --- a/llvm/lib/Object/Object.cpp +++ b/llvm/lib/Object/Object.cpp @@ -150,9 +150,9 @@ uint64_t LLVMGetSymbolAddress(LLVMSymbolIteratorRef SI) { return ret; } -uint64_t LLVMGetSymbolFileOffset(LLVMSymbolIteratorRef SI) { +uint64_t LLVMGetSymbolOffset(LLVMSymbolIteratorRef SI) { uint64_t ret; - if (error_code ec = (*unwrap(SI))->getFileOffset(ret)) + if (error_code ec = (*unwrap(SI))->getOffset(ret)) report_fatal_error(ec.message()); return ret; } @@ -172,13 +172,6 @@ uint64_t LLVMGetRelocationAddress(LLVMRelocationIteratorRef RI) { return ret; } -uint64_t LLVMGetRelocationOffset(LLVMRelocationIteratorRef RI) { - uint64_t ret; - if (error_code ec = (*unwrap(RI))->getOffset(ret)) - report_fatal_error(ec.message()); - return ret; -} - LLVMSymbolIteratorRef LLVMGetRelocationSymbol(LLVMRelocationIteratorRef RI) { SymbolRef ret; if (error_code ec = (*unwrap(RI))->getSymbol(ret)) |