mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-02 00:01:59 +00:00
DebugInfo: reorder some initializers
Fix a few initialization ordering warnings from gcc from `-Wreorder`. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@275615 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1083a5297a
commit
db823e2f44
@ -22,8 +22,8 @@ const uint32_t kDefaultBlockMapAddr = 1;
|
||||
|
||||
MsfBuilder::MsfBuilder(uint32_t BlockSize, uint32_t MinBlockCount, bool CanGrow,
|
||||
BumpPtrAllocator &Allocator)
|
||||
: Allocator(Allocator), BlockSize(BlockSize), MininumBlocks(MinBlockCount),
|
||||
IsGrowable(CanGrow), BlockMapAddr(kDefaultBlockMapAddr),
|
||||
: Allocator(Allocator), IsGrowable(CanGrow), BlockSize(BlockSize),
|
||||
MininumBlocks(MinBlockCount), BlockMapAddr(kDefaultBlockMapAddr),
|
||||
FreeBlocks(MinBlockCount + 2U, true) {
|
||||
FreeBlocks[kSuperBlockBlock] = false;
|
||||
FreeBlocks[BlockMapAddr] = false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user