internal static LLVMTypeRef CreateLLVMNotifierWriterType(this ContextWrapper context, LLVMTypeRef innerType) { return(context.StructType( new LLVMTypeRef[] { LLVMTypeRef.PointerType(context.CreateLLVMRefCountType(context.CreateLLVMNotifierSharedDataType(innerType)), 0u) }, false)); }
internal static LLVMTypeRef CreateLLVMSharedType(this ContextWrapper context, LLVMTypeRef innerType) { return(LLVMTypeRef.PointerType(context.CreateLLVMRefCountType(innerType), 0u)); }