insertDbgRecord overloads

Synopses

Declared in <llvm/IR/DebugProgramInstruction.h>

Insert a DbgRecord into this DbgMarker, at the end of the list.

void
insertDbgRecord(
    DbgRecord* New,
    bool InsertAtHead);

Insert a DbgRecord prior to a DbgRecord contained within this marker.

void
insertDbgRecord(
    DbgRecord* New,
    DbgRecord* InsertBefore);

Parameters

Name

Description

New

Record to insert.

InsertAtHead

If true, insert at the start instead.

InsertBefore

Existing record in this marker to insert before.

Created with MrDocs