1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

DwarfGenerator - fix uninitialized variable warnings. NFC.

This commit is contained in:
Simon Pilgrim 2019-11-18 12:06:13 +00:00
parent ff4f330212
commit fa249c377e

View File

@ -377,7 +377,8 @@ void dwarfgen::LineTable::writeProloguePayload(
dwarfgen::Generator::Generator()
: MAB(nullptr), MCE(nullptr), MS(nullptr), StringPool(nullptr),
Abbreviations(Allocator) {}
TLOF(nullptr), Abbreviations(Allocator), StringOffsetsStartSym(nullptr),
Version(0) {}
dwarfgen::Generator::~Generator() = default;
llvm::Expected<std::unique_ptr<dwarfgen::Generator>>