mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2025-12-15 16:29:21 +00:00
Remove end-of-file marker and fix lsr's operands.
This commit is contained in:
parent
e9a632ea4e
commit
562f877328
@ -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
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user