forked from OSchip/llvm-project
MCDwarfFile::DirIndex - fix uninitialized variable warning. NFCI.
This commit is contained in:
parent
667223c3ed
commit
692b42fbb0
|
@ -54,7 +54,7 @@ struct MCDwarfFile {
|
|||
std::string Name;
|
||||
|
||||
// The index into the list of directory names for this file name.
|
||||
unsigned DirIndex;
|
||||
unsigned DirIndex = 0;
|
||||
|
||||
/// The MD5 checksum, if there is one. Non-owning pointer to data allocated
|
||||
/// in MCContext.
|
||||
|
|
Loading…
Reference in New Issue