Use b.ge form for instructions

This commit is contained in:
Vladimir Serbinenko 2013-11-25 13:04:44 +01:00
parent d6c92cdc34
commit 1005bed722
2 changed files with 7 additions and 7 deletions

View file

@ -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