Remove end-of-file marker and fix lsr's operands.

This commit is contained in:
Ilmir Usmanov 2014-10-14 22:01:21 +04:00
parent e9a632ea4e
commit 562f877328

View File

@ -52,7 +52,6 @@ __aeabi_llsl:
mov r0, #0
bx lr
.end __aeabi_llsl
/**
@ -71,9 +70,9 @@ __aeabi_llsr:
// r0 = (r1 >> (r2 - 32));
// r1 = 0
mov r0, r0
sub r2, #32
lsr r0, r1, r2
mov r0, r1
lsr r0, r2
mov r1, #0
bx lr
@ -101,4 +100,4 @@ __aeabi_llsr:
mov r0, #0
bx lr
.end __aeabi_llsr