Implement MachOObjectFile::is64Bit directly.

llvm-svn: 178996
This commit is contained in:
Rafael Espindola 2013-04-07 19:38:15 +00:00
parent f3433150f0
commit 6e5f665040

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 *