Fix uninitialized variable analyzer warning. NFCI.

llvm-svn: 360516
This commit is contained in:
Simon Pilgrim 2019-05-11 11:08:24 +00:00
parent 3ff9c51eba
commit 46d96c02b5
1 changed files with 1 additions and 1 deletions

View File

@ -8035,7 +8035,7 @@ bool LLParser::ParseOptionalFFlags(FunctionSummary::FFlags &FFlags) {
return true;
do {
unsigned Val;
unsigned Val = 0;
switch (Lex.getKind()) {
case lltok::kw_readNone:
Lex.Lex();