LLVMGetNamedMetadataOperands

Function LLVMGetNamedMetadataOperands 

Source
pub unsafe extern "C" fn LLVMGetNamedMetadataOperands(
    M: LLVMModuleRef,
    Name: *const c_char,
    Dest: *mut LLVMValueRef,
)
Expand description

Obtain the named metadata operands for a module.

The passed LLVMValueRef pointer should refer to an array of LLVMValueRef at least LLVMGetNamedMetadataNumOperands long. This array will be populated with the LLVMValueRef instances. Each instance corresponds to a llvm::MDNode.

@see llvm::Module::getNamedMetadata() @see llvm::MDNode::getOperand()