1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 04:32:44 +01:00

Fix uninitialized variable warning. NFCI

llvm-svn: 373583
This commit is contained in:
Simon Pilgrim 2019-10-03 11:22:00 +00:00
parent f11b927626
commit b7e2808a1f

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