ΒΆLLVMMetadataRef LLVMDIBuilderCreatePointerType(
    LLVMDIBuilderRef Builder,
    LLVMMetadataRef PointeeTy,
    uint64_t SizeInBits,
    uint32_t AlignInBits,
    unsigned int AddressSpace,
    const char* Name,
    size_t NameLen)

Description

Create debugging information entry for a pointer.

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

Parameters

LLVMDIBuilderRef Builder
The DIBuilder.
LLVMMetadataRef PointeeTy
Type pointed by this pointer.
uint64_t SizeInBits
Size.
uint32_t AlignInBits
Alignment. (optional, pass 0 to ignore)
unsigned int AddressSpace
DWARF address space. (optional, pass 0 to ignore)
const char* Name
Pointer type name. (optional)
size_t NameLen
Length of pointer type name. (optional)