Silence compiler warning.

llvm-svn: 115107
This commit is contained in:
Nick Lewycky 2010-09-29 23:32:20 +00:00
parent aafc02daa9
commit 711a5e60fa

View File

@ -1248,7 +1248,7 @@ bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
AteExtraComma = true;
return false;
}
unsigned Idx;
unsigned Idx = 0;
if (ParseUInt32(Idx)) return true;
Indices.push_back(Idx);
}