Fix uninitialized variable warning. NFCI

llvm-svn: 373582
This commit is contained in:
Simon Pilgrim 2019-10-03 11:21:46 +00:00
parent 43817e1915
commit b327dc1966
1 changed files with 1 additions and 1 deletions

View File

@ -11339,7 +11339,7 @@ bool ARMAsmParser::parseDirectiveUnwindRaw(SMLoc L) {
SmallVector<uint8_t, 16> Opcodes;
auto parseOne = [&]() -> bool {
const MCExpr *OE;
const MCExpr *OE = nullptr;
SMLoc OpcodeLoc = getLexer().getLoc();
if (check(getLexer().is(AsmToken::EndOfStatement) ||
Parser.parseExpression(OE),