mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
Fix uninitialized variable analyzer warning. NFCI.
llvm-svn: 360516
This commit is contained in:
parent
993406437c
commit
8964f812ac
@ -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
Block a user