diff options
author | Francesco Petrogalli <francesco.petrogalli@arm.com> | 2019-11-18 16:41:03 +0000 |
---|---|---|
committer | Francesco Petrogalli <francesco.petrogalli@arm.com> | 2019-11-18 16:49:03 +0000 |
commit | 015b2e699f0c7205564e51dd73a0d619571640bf (patch) | |
tree | e583df6a46fce2022cfdabe1aa315e63a11b1479 | |
parent | c3eded068c64bfe614d25359927a2917ff8e4a35 (diff) | |
download | bcm5719-llvm-015b2e699f0c7205564e51dd73a0d619571640bf.tar.gz bcm5719-llvm-015b2e699f0c7205564e51dd73a0d619571640bf.zip |
[dwarfgen] Fix initialization order error. [NFCI]
This commit fixes the `-Werror=reorder` builds.
-rw-r--r-- | llvm/unittests/DebugInfo/DWARF/DwarfGenerator.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/unittests/DebugInfo/DWARF/DwarfGenerator.cpp b/llvm/unittests/DebugInfo/DWARF/DwarfGenerator.cpp index 7fcb62021b5..472d4dd6ad1 100644 --- a/llvm/unittests/DebugInfo/DWARF/DwarfGenerator.cpp +++ b/llvm/unittests/DebugInfo/DWARF/DwarfGenerator.cpp @@ -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>> |