@@ -148,7 +148,7 @@ where
148148
149149#[ repr( C ) ]
150150#[ derive( AlignedBytesBorrow , Debug ) ]
151- pub struct Rv32JalLuiRecord {
151+ pub struct Rv32JalLuiCoreRecord {
152152 pub imm : u32 ,
153153 pub rd_data : [ u8 ; RV32_REGISTER_NUM_LIMBS ] ,
154154 pub is_jal : bool ,
@@ -173,7 +173,7 @@ where
173173 for < ' buf > RA : RecordArena <
174174 ' buf ,
175175 EmptyAdapterCoreLayout < F , A > ,
176- ( A :: RecordMut < ' buf > , & ' buf mut Rv32JalLuiRecord ) ,
176+ ( A :: RecordMut < ' buf > , & ' buf mut Rv32JalLuiCoreRecord ) ,
177177 > ,
178178{
179179 fn get_opcode_name ( & self , opcode : usize ) -> String {
@@ -220,7 +220,7 @@ where
220220 fn fill_trace_row ( & self , mem_helper : & MemoryAuxColsFactory < F > , row_slice : & mut [ F ] ) {
221221 let ( adapter_row, mut core_row) = unsafe { row_slice. split_at_mut_unchecked ( A :: WIDTH ) } ;
222222 self . adapter . fill_trace_row ( mem_helper, adapter_row) ;
223- let record: & Rv32JalLuiRecord = unsafe { get_record_from_slice ( & mut core_row, ( ) ) } ;
223+ let record: & Rv32JalLuiCoreRecord = unsafe { get_record_from_slice ( & mut core_row, ( ) ) } ;
224224 let core_row: & mut Rv32JalLuiCoreCols < F > = core_row. borrow_mut ( ) ;
225225
226226 for pair in record. rd_data . chunks_exact ( 2 ) {
0 commit comments