ΒΆvoid LLVMGetMDNodeOperands(LLVMValueRef V,
                           LLVMValueRef* Dest)

Description

Obtain the given MDNode's operands. The passed LLVMValueRef pointer should point to enough memory to hold all of the operands of the given MDNode (see LLVMGetMDNodeNumOperands) as LLVMValueRefs. This memory will be populated with the LLVMValueRefs of the MDNode's operands.

Declared at: llvm/include/llvm-c/Core.h:2805

Parameters

LLVMValueRef V
MDNode to get the operands from.
LLVMValueRef* Dest
Destination array for operands.