mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-15 15:48:38 +00:00
Fix use of uninitialized value added in r189400 (found by MemorySanitizer)
llvm-svn: 189456
This commit is contained in:
parent
90be9b3ab8
commit
edf369f1c4
@ -54,7 +54,7 @@ PPCMCExpr::EvaluateAsRelocatableImpl(MCValue &Res,
|
||||
const MCAsmLayout *Layout) const {
|
||||
MCValue Value;
|
||||
|
||||
if (Layout && !getSubExpr()->EvaluateAsRelocatable(Value, *Layout))
|
||||
if (!Layout || !getSubExpr()->EvaluateAsRelocatable(Value, *Layout))
|
||||
return false;
|
||||
|
||||
if (Value.isAbsolute()) {
|
||||
@ -85,7 +85,7 @@ PPCMCExpr::EvaluateAsRelocatableImpl(MCValue &Res,
|
||||
break;
|
||||
}
|
||||
Res = MCValue::get(Result);
|
||||
} else if (Layout) {
|
||||
} else {
|
||||
MCContext &Context = Layout->getAssembler().getContext();
|
||||
const MCSymbolRefExpr *Sym = Value.getSymA();
|
||||
MCSymbolRefExpr::VariantKind Modifier = Sym->getKind();
|
||||
@ -118,8 +118,7 @@ PPCMCExpr::EvaluateAsRelocatableImpl(MCValue &Res,
|
||||
}
|
||||
Sym = MCSymbolRefExpr::Create(&Sym->getSymbol(), Modifier, Context);
|
||||
Res = MCValue::get(Sym, Value.getSymB(), Value.getConstant());
|
||||
} else
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user