forked from OSchip/llvm-project
Fix uninitialized variable analyzer warning. NFCI.
llvm-svn: 360516
This commit is contained in:
parent
3ff9c51eba
commit
46d96c02b5
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue