forked from OSchip/llvm-project
[dwarfgen] Fix initialization order error. [NFCI]
This commit fixes the `-Werror=reorder` builds.
This commit is contained in:
parent
c3eded068c
commit
015b2e699f
|
@ -376,9 +376,9 @@ void dwarfgen::LineTable::writeProloguePayload(
|
|||
//===----------------------------------------------------------------------===//
|
||||
|
||||
dwarfgen::Generator::Generator()
|
||||
: MAB(nullptr), MCE(nullptr), MS(nullptr), StringPool(nullptr),
|
||||
TLOF(nullptr), Abbreviations(Allocator), StringOffsetsStartSym(nullptr),
|
||||
Version(0) {}
|
||||
: MAB(nullptr), MCE(nullptr), MS(nullptr), TLOF(nullptr),
|
||||
StringPool(nullptr), Abbreviations(Allocator),
|
||||
StringOffsetsStartSym(nullptr), Version(0) {}
|
||||
dwarfgen::Generator::~Generator() = default;
|
||||
|
||||
llvm::Expected<std::unique_ptr<dwarfgen::Generator>>
|
||||
|
|
Loading…
Reference in New Issue