@@ -89,7 +89,7 @@ macro_rules! jit_impl_inner {
89
89
paste:: item! {
90
90
pub fn $op( & mut self $( , $arg: $type) * ) -> JitNode <' a> {
91
91
JitNode {
92
- node: unsafe { bindings:: [ < _jit_new_node_ $ifmt >] ( self . state, bindings:: [ < jit_code_t_jit_code_ $op >] $( , jit_impl_type!( $arg. to_ffi( ) => $target) ) * ) } ,
92
+ node: unsafe { bindings:: [ < _jit_new_node_ $ifmt >] ( self . state, bindings:: jit_code_t :: [ < jit_code_ $op >] $( , jit_impl_type!( $arg. to_ffi( ) => $target) ) * ) } ,
93
93
phantom: std:: marker:: PhantomData ,
94
94
}
95
95
}
@@ -140,7 +140,7 @@ macro_rules! jit_branch {
140
140
paste:: item! {
141
141
pub fn $fn( & mut self , a: Reg , b: jit_imm!( $t) ) -> JitNode <' a> {
142
142
JitNode {
143
- node: unsafe { bindings:: _jit_new_node_pww( self . state, bindings:: [ < jit_code_t_jit_code_ $fn >] , null_mut:: <c_void>( ) , a. to_ffi( ) as JitWord , b. to_ffi( ) as JitWord ) } ,
143
+ node: unsafe { bindings:: _jit_new_node_pww( self . state, bindings:: jit_code_t :: [ < jit_code_ $fn >] , null_mut:: <c_void>( ) , a. to_ffi( ) as JitWord , b. to_ffi( ) as JitWord ) } ,
144
144
phantom: std:: marker:: PhantomData ,
145
145
}
146
146
}
@@ -499,7 +499,7 @@ impl<'a> JitState<'a> {
499
499
pub fn jmpi ( & mut self ) -> JitNode < ' a > {
500
500
// I looked at the lightning code, this will be copied
501
501
JitNode {
502
- node : unsafe { bindings:: _jit_new_node_p ( self . state , bindings:: jit_code_t_jit_code_jmpi , std:: ptr:: null_mut :: < c_void > ( ) ) } ,
502
+ node : unsafe { bindings:: _jit_new_node_p ( self . state , bindings:: jit_code_t :: jit_code_jmpi , std:: ptr:: null_mut :: < c_void > ( ) ) } ,
503
503
phantom : std:: marker:: PhantomData ,
504
504
}
505
505
}
0 commit comments