Skip to content

Commit

Permalink
[MachO] Fixing copy-paste error from r273719
Browse files Browse the repository at this point in the history
Thanks Kevin!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@273725 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
Chris Bieneman committed Jun 24, 2016
1 parent 783d353 commit 5b01931
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/llvm/Object/MachOUniversal.h
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class MachOUniversalBinary : public Binary {
if (Parent->getMagic() == MachO::FAT_MAGIC)
return 0;
else // Parent->getMagic() == MachO::FAT_MAGIC_64
return Header64.align;
return Header64.reserved;
}
std::string getArchTypeName() const {
if (Parent->getMagic() == MachO::FAT_MAGIC) {
Expand Down

0 comments on commit 5b01931

Please sign in to comment.