Skip to content

Commit 0d59c77

Browse files
committed
ADT/AddressResolver Re-arrange fields for 8 bytes saving
1 parent 4dc475a commit 0d59c77

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

include/ADT/AddressResolver.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ namespace ADT {
8080
MachO::RebaseActionList::UnorderedMap RebaseMap;
8181
Dyld3::ChainedPointerKind ChainedFixupsKind;
8282

83-
PatchLocationMap PatchExportMap;
8483
uint32_t SlideInfoVersion;
8584

85+
PatchLocationMap PatchExportMap;
8686
MachO::SegmentList SegmentList;
8787

8888
uint64_t SlideInfoBaseAddress;
@@ -100,8 +100,8 @@ namespace ADT {
100100
const uint64_t BaseAddress) noexcept
101101
: BindMap(std::move(BindMap)), RebaseMap(std::move(RebaseMap)),
102102
ChainedFixupsKind(ChainedFixupsKind),
103-
PatchExportMap(std::move(PatchExportMap)),
104-
SlideInfoVersion(SlideInfoVersion), SegmentList(SegmentList),
103+
SlideInfoVersion(SlideInfoVersion),
104+
PatchExportMap(std::move(PatchExportMap)), SegmentList(SegmentList),
105105
SlideInfoBaseAddress(SlideInfoBaseAddress),
106106
ImageBaseAddress(BaseAddress) {}
107107

0 commit comments

Comments
 (0)