DIEAbbrev - fix uninitialized variable warning. NFCI.

This commit is contained in:
Simon Pilgrim 2019-11-02 17:28:08 +00:00
parent d0f3c82216
commit 0918967739
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ class DIEAbbrev : public FoldingSetNode {
SmallVector<DIEAbbrevData, 12> Data;
public:
DIEAbbrev(dwarf::Tag T, bool C) : Tag(T), Children(C) {}
DIEAbbrev(dwarf::Tag T, bool C) : Tag(T), Children(C), Number(0) {}
/// Accessors.
/// @{