]> granicus.if.org Git - libvpx/commitdiff
Use lowercase instruction in assembly
authorJohann <johannkoenig@google.com>
Fri, 20 Sep 2013 23:11:05 +0000 (16:11 -0700)
committerJohann <johannkoenig@google.com>
Fri, 20 Sep 2013 23:11:05 +0000 (16:11 -0700)
The iOS compiler does not recognize BLE:
bad instruction `BLE idct32_transpose_pair_loop'

Change-Id: I7426694c66bc31caf939a2d5000968da1222c15b

vp9/common/arm/neon/vp9_short_idct32x32_add_neon.asm

index 5c097ccc8d236ba72397118b4c53c5c733476494..3a0ff608b93c293fb29a9ba5a1b32357a3d25ed0 100644 (file)
@@ -259,7 +259,7 @@ idct32_transpose_pair_loop
     ; transpose pair loop processing
     add r3, r3, #1
     cmp r3, #1
-    BLE idct32_transpose_pair_loop
+    ble idct32_transpose_pair_loop
 
     ; restore r0/input to its original value
     sub r0, r0, #32*8*2
@@ -954,7 +954,7 @@ idct32_transpose_pair_loop
     ; bands loop processing
     add r4, r4, #1
     cmp r4, #3
-    BLE idct32_bands_loop
+    ble idct32_bands_loop
 
     pop {r4}
     bx              lr
@@ -1005,7 +1005,7 @@ idct32_combine_add_loop
     ; loop processing
     add r3, r3, #1
     cmp r3, #31
-    BLE idct32_combine_add_loop
+    ble idct32_combine_add_loop
 
     bx              lr
     ENDP  ; |idct32_transpose|