Implement MachOObjectFile::is64Bit directly.

llvm-svn: 178996
This commit is contained in:
Rafael Espindola 2013-04-07 19:38:15 +00:00
parent 774a8cec37
commit 28814d7911
1 changed files with 2 additions and 1 deletions

View File

@ -55,7 +55,8 @@ MachOObjectFile::MachOObjectFile(MemoryBuffer *Object, error_code &ec)
}
bool MachOObjectFile::is64Bit() const {
return MachOObj->is64Bit();
StringRef Magic = getData(0, 4);
return (Magic == "\xFE\xED\xFA\xCF") || (Magic == "\xCF\xFA\xED\xFE");
}
const MachOFormat::LoadCommand *