ΒΆLLVMMetadataRef LLVMDIBuilderCreateDebugLocation(
    LLVMContextRef Ctx,
    unsigned int Line,
    unsigned int Column,
    LLVMMetadataRef Scope,
    LLVMMetadataRef InlinedAt)

Description

Creates a new DebugLocation that describes a source location.

Declared at: llvm/include/llvm-c/DebugInfo.h:438

Parameters

LLVMContextRef Ctx
unsigned int Line
The line in the source file.
unsigned int Column
The column in the source file.
LLVMMetadataRef Scope
The scope in which the location resides.
LLVMMetadataRef InlinedAt
The scope where this location was inlined, if at all. (optional).