File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ pub struct OtherModeRegs {
4747 pub spsr : u32 ,
4848}
4949
50- #[ repr( C , align( 64 ) ) ]
50+ #[ repr( C , align( 32 ) ) ]
5151pub struct ThreadRegs {
5252 pub gp_regs : [ u32 ; 13 ] ,
5353 pub sp : u32 ,
Original file line number Diff line number Diff line change @@ -50,14 +50,14 @@ impl JitBuf {
5050
5151pub const RETURN_STACK_SIZE : usize = 16 ;
5252
53- #[ repr( C , align( 64 ) ) ]
53+ #[ repr( C , align( 32 ) ) ]
5454pub struct JitRuntimeData {
55- pub idle_loop : bool ,
56- pub return_stack_ptr : u8 ,
57- pub return_stack : [ u32 ; RETURN_STACK_SIZE ] ,
5855 pub pre_cycle_count_sum : u16 ,
5956 pub accumulated_cycles : u16 ,
6057 pub host_sp : usize ,
58+ pub idle_loop : bool ,
59+ pub return_stack_ptr : u8 ,
60+ pub return_stack : [ u32 ; RETURN_STACK_SIZE ] ,
6161 pub branch_out_pc : u32 ,
6262}
6363
You can’t perform that action at this time.
0 commit comments