llvm::MCStreamer::emitZerofill

Emit the zerofill section and an optional symbol.

Synopsis

Declared in <llvm/MC/MCStreamer.h>

virtual
void
emitZerofill(
    MCSection* Section,
    MCSymbol* Symbol = nullptr,
    uint64_t Size = 0,
    Align ByteAlignment = Align(1),
    SMLoc Loc = SMLoc());

Parameters

NameDescription
Section- The zerofill section to create and or to put the symbol
Symbol- The zerofill symbol to emit, if non-NULL.
Size- The size of the zerofill symbol.
ByteAlignment- The alignment of the zerofill symbol.
Loc- Source location for diagnostics.