forked from OSchip/llvm-project
DIEAbbrev - fix uninitialized variable warning. NFCI.
This commit is contained in:
parent
d0f3c82216
commit
0918967739
|
@ -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.
|
||||
/// @{
|
||||
|
|
Loading…
Reference in New Issue