mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
[obj2yaml][yaml2obj] Fixing dyld_info_command mappings
Apparently I mucked up the mappings here, which was causing some binary differences in round tripping. llvm-svn: 269846
This commit is contained in:
parent
7ed2a58718
commit
a50570956b
@ -120,10 +120,12 @@ void MappingTraits<MachO::dyld_info_command>::mapping(
|
||||
IO &IO, MachO::dyld_info_command &LoadCommand) {
|
||||
IO.mapRequired("rebase_off", LoadCommand.rebase_off);
|
||||
IO.mapRequired("rebase_size", LoadCommand.rebase_size);
|
||||
IO.mapRequired("bind_off", LoadCommand.bind_size);
|
||||
IO.mapRequired("bind_off", LoadCommand.bind_off);
|
||||
IO.mapRequired("bind_size", LoadCommand.bind_size);
|
||||
IO.mapRequired("weak_bind_off", LoadCommand.weak_bind_off);
|
||||
IO.mapRequired("weak_bind_size", LoadCommand.weak_bind_size);
|
||||
IO.mapRequired("lazy_bind_off", LoadCommand.lazy_bind_size);
|
||||
IO.mapRequired("lazy_bind_off", LoadCommand.lazy_bind_off);
|
||||
IO.mapRequired("lazy_bind_size", LoadCommand.lazy_bind_size);
|
||||
IO.mapRequired("export_off", LoadCommand.export_off);
|
||||
IO.mapRequired("export_size", LoadCommand.export_size);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user