1
0
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:
Simon Pilgrim 2019-05-11 11:08:24 +00:00
parent 993406437c
commit 8964f812ac

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();