mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-19 18:24:00 +00:00
Remove MachOObjectFile::getObject.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@178986 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -45,6 +45,20 @@ bool MachOObjectFile::is64Bit() const {
|
||||
return MachOObj->is64Bit();
|
||||
}
|
||||
|
||||
const LoadCommandInfo &
|
||||
MachOObjectFile::getLoadCommandInfo(unsigned Index) const {
|
||||
return MachOObj->getLoadCommandInfo(Index);
|
||||
}
|
||||
|
||||
void MachOObjectFile::ReadULEB128s(uint64_t Index,
|
||||
SmallVectorImpl<uint64_t> &Out) const {
|
||||
return MachOObj->ReadULEB128s(Index, Out);
|
||||
}
|
||||
|
||||
const macho::Header &MachOObjectFile::getHeader() const {
|
||||
return MachOObj->getHeader();
|
||||
}
|
||||
|
||||
ObjectFile *ObjectFile::createMachOObjectFile(MemoryBuffer *Buffer) {
|
||||
error_code ec;
|
||||
std::string Err;
|
||||
|
Reference in New Issue
Block a user