Skip to content
Snippets Groups Projects
Commit 707bdf29 authored by Prakalp Srivastava's avatar Prakalp Srivastava
Browse files

Modified intrinsic name

parent cb945d90
No related branches found
No related tags found
No related merge requests found
......@@ -55,17 +55,17 @@ let TargetPrefix = "visc" in {
llvm_i1_ty, llvm_i32_ty, llvm_i32_ty],
[]>;
/* Create input binding intrinsic -
* void llvm.visc.createBinding.In(i8*, i32, i32);
/* Create bind input intrinsic -
* void llvm.visc.bind.input(i8*, i32, i32);
*/
def int_visc_createBinding_In : Intrinsic<[], [llvm_ptr_ty, llvm_i32_ty,
llvm_i32_ty], []>;
def int_visc_bind_input : Intrinsic<[], [llvm_ptr_ty, llvm_i32_ty,
llvm_i32_ty], []>;
/* Create output binding intrinsic -
* void llvm.visc.createBinding.Out(i8*, i32, i32);
/* Create bind output intrinsic -
* void llvm.visc.bind.output(i8*, i32, i32);
*/
def int_visc_createBinding_Out : Intrinsic<[], [llvm_ptr_ty, llvm_i32_ty,
llvm_i32_ty], []>;
def int_visc_bind_output : Intrinsic<[], [llvm_ptr_ty, llvm_i32_ty,
llvm_i32_ty], []>;
/* Find associated dataflow node intrinsic -
* i8* llvm.visc.getNode();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment