Use b.ge form for instructions
This commit is contained in:
parent
d6c92cdc34
commit
1005bed722
2 changed files with 7 additions and 7 deletions
|
@ -31,7 +31,7 @@
|
|||
FUNCTION(grub_arch_clean_dcache_range)
|
||||
// Clean data cache for range to point-of-unification
|
||||
1: cmp x0, x1
|
||||
bge 2f
|
||||
b.ge 2f
|
||||
dc cvau, x0 // Clean Virtual Address to PoU
|
||||
add x0, x0, x2 // Next line
|
||||
b 1b
|
||||
|
@ -45,7 +45,7 @@ FUNCTION(grub_arch_clean_dcache_range)
|
|||
FUNCTION(grub_arch_invalidate_icache_range)
|
||||
// Invalidate instruction cache for range to point-of-unification
|
||||
1: cmp x0, x1
|
||||
bge 2f
|
||||
b.ge 2f
|
||||
ic ivau, x0 // Invalidate Virtual Address to PoU
|
||||
add x0, x0, x2 // Next line
|
||||
b 1b
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue