Zero-initialize members of the CpuHashInfoTy structure for AsmParser

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@267042 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Andrew Kaylor 2016-04-21 20:09:35 +00:00
parent 484ff8d53d
commit 7c699fb008

View File

@ -156,9 +156,9 @@ private:
/// The values from the last parsed cpp hash file line comment if any.
struct CppHashInfoTy {
StringRef Filename;
int64_t LineNumber;
int64_t LineNumber = 0;
SMLoc Loc;
unsigned Buf;
unsigned Buf = 0;
};
CppHashInfoTy CppHashInfo;