pub unsafe extern "C" fn LLVMConstDataArray(
ElementTy: LLVMTypeRef,
Data: *const c_char,
SizeInBytes: usize,
) -> LLVMValueRef
Expand description
Create a ConstantDataArray from raw values.
ElementTy must be one of i8, i16, i32, i64, half, bfloat, float, or double. Data points to a contiguous buffer of raw values in the host endianness. The element count is inferred from the element type and the data size in bytes.