llvm::MCStreamer::emitELFSize

Emit an ELF .size directive.

Synopsis

Declared in <llvm/MC/MCStreamer.h>

virtual
void
emitELFSize(
    MCSymbol* Symbol,
    MCExpr const* Value);

Description

This corresponds to an assembler statement such as: .size symbol, expression

Parameters

NameDescription
SymbolMCSymbol - 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.
ValueBase class for the full range of assembler expressions which are needed for parsing.