forked from OSchip/llvm-project
parent
76793bac89
commit
33d571e2ae
|
@ -338,7 +338,8 @@ static bool EvaluateSymbolicAdd(const MCAssembler *Asm,
|
||||||
// Absolutize symbol differences between defined symbols when we have a
|
// Absolutize symbol differences between defined symbols when we have a
|
||||||
// layout object and the target requests it.
|
// layout object and the target requests it.
|
||||||
|
|
||||||
assert(!(Layout && !Asm));
|
assert((!Layout || Asm) &&
|
||||||
|
"Must have an assembler object if layout is given!");
|
||||||
|
|
||||||
if (Asm && A && B) {
|
if (Asm && A && B) {
|
||||||
const MCSymbol &SA = A->getSymbol();
|
const MCSymbol &SA = A->getSymbol();
|
||||||
|
|
Loading…
Reference in New Issue