Fix uninitialized variable warning. NFCI

llvm-svn: 373583
This commit is contained in:
Simon Pilgrim 2019-10-03 11:22:00 +00:00
parent b327dc1966
commit 44bc1186e4
1 changed files with 1 additions and 1 deletions

View File

@ -5276,7 +5276,7 @@ bool AArch64AsmParser::parseDirectiveInst(SMLoc Loc) {
auto parseOp = [&]() -> bool {
SMLoc L = getLoc();
const MCExpr *Expr;
const MCExpr *Expr = nullptr;
if (check(getParser().parseExpression(Expr), L, "expected expression"))
return true;
const MCConstantExpr *Value = dyn_cast_or_null<MCConstantExpr>(Expr);