[dwarfgen] Fix initialization order error. [NFCI]

This commit fixes the `-Werror=reorder` builds.
This commit is contained in:
Francesco Petrogalli 2019-11-18 16:41:03 +00:00
parent c3eded068c
commit 015b2e699f
1 changed files with 3 additions and 3 deletions

View File

@ -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>>