Follow-up to r352254: Initialize Selection field.

The diagnostic there fired spuriosly due to uninitialized memory.

llvm-svn: 352304
This commit is contained in:
Nico Weber 2019-01-27 03:56:37 +00:00
parent e65d4c5525
commit b1a110c961
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ public:
DefinedRegular *Sym = nullptr;
// The COMDAT selection if this is a COMDAT chunk.
llvm::COFF::COMDATType Selection;
llvm::COFF::COMDATType Selection = (llvm::COFF::COMDATType)0;
ArrayRef<coff_relocation> Relocs;