File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -200,10 +200,10 @@ impl Assembler
200200 /// Avoid using if you can since this is used to lower [Insn] internally and
201201 /// so conflicts are possible.
202202 pub const SCRATCH_REG : Reg = X16_REG ;
203- const SCRATCH0 : A64Opnd = A64Opnd :: Reg ( Assembler :: SCRATCH_REG ) ;
204- const SCRATCH0_REG : Reg = Assembler :: SCRATCH_REG ;
205- const SCRATCH1 : A64Opnd = A64Opnd :: Reg ( X17_REG ) ;
203+ const SCRATCH0_REG : Reg = Self :: SCRATCH_REG ;
206204 const SCRATCH1_REG : Reg = X17_REG ;
205+ const SCRATCH0 : A64Opnd = A64Opnd :: Reg ( Self :: SCRATCH0_REG ) ;
206+ const SCRATCH1 : A64Opnd = A64Opnd :: Reg ( Self :: SCRATCH1_REG ) ;
207207
208208 /// Get the list of registers from which we will allocate on this platform
209209 pub fn get_alloc_regs ( ) -> Vec < Reg > {
You can’t perform that action at this time.
0 commit comments