forked from OSchip/llvm-project
Fix uninitialized variable warning. NFCI
llvm-svn: 373582
This commit is contained in:
parent
43817e1915
commit
b327dc1966
|
@ -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),
|
||||
|
|
Loading…
Reference in New Issue