[LLD] Fix an out-of-order-initialization bug that was introduced in r237841 by

moving a field in MachOLinkingContext.

llvm-svn: 237847
This commit is contained in:
Lang Hames 2015-05-20 22:35:20 +00:00
parent d48be84032
commit 2a10996706
1 changed files with 1 additions and 1 deletions

View File

@ -335,13 +335,13 @@ private:
bool _outputMachOTypeStatic; // Disambiguate static vs dynamic prog
bool _doNothing; // for -help and -v which just print info
bool _pie;
uint64_t _stackSize;
Arch _arch;
OS _os;
uint32_t _osMinVersion;
uint64_t _pageZeroSize;
uint64_t _pageSize;
uint64_t _baseAddress;
uint64_t _stackSize;
uint32_t _compatibilityVersion;
uint32_t _currentVersion;
StringRef _installName;