llvm::MCObjectWriter::isSymbolRefDifferenceFullyResolved

Check whether the difference (A - B) between two symbol references is fully resolved.

Synopsis

Declared in <llvm/MC/MCObjectWriter.h>

bool
isSymbolRefDifferenceFullyResolved(
    MCSymbol const& A,
    MCSymbol const& B,
    bool InSet) const;

Description

Clients are not required to answer precisely and may conservatively return false, even when a difference is fully resolved.

Parameters

NameDescription
AMCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created and uniqued by the MCContext class. MCSymbols should only be constructed with valid names for the object file.
BMCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created and uniqued by the MCContext class. MCSymbols should only be constructed with valid names for the object file.