mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
Fix assembler .size directives. Currently used binutils don't complain, but 2.21.1 treats these as errors.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30945 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
d01954cad2
commit
415f579bf3
4 changed files with 5 additions and 5 deletions
|
@ -132,6 +132,6 @@ __grey_line1:
|
||||||
|
|
||||||
rts
|
rts
|
||||||
nop
|
nop
|
||||||
.size _grey_line1, . - _grey_line1
|
.size __grey_line1, . - __grey_line1
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -146,4 +146,4 @@ copy_n2e:
|
||||||
bf copy_n2e
|
bf copy_n2e
|
||||||
bt top_n2e ! always taken if the preceding bf isn't
|
bt top_n2e ! always taken if the preceding bf isn't
|
||||||
|
|
||||||
.size ucl_nrv2e_decompress_8, .-ucl_nrv2e_decompress_8
|
.size _ucl_nrv2e_decompress_8, .-_ucl_nrv2e_decompress_8
|
||||||
|
|
|
@ -65,4 +65,4 @@ restart_copy_start:
|
||||||
@ Branch to destination (should be address 0x00000000)
|
@ Branch to destination (should be address 0x00000000)
|
||||||
bx r1
|
bx r1
|
||||||
restart_copy_end:
|
restart_copy_end:
|
||||||
.size rolo_restart,.-rolo_restart
|
.size rolo_restart_firmware,.-rolo_restart_firmware
|
||||||
|
|
|
@ -662,7 +662,7 @@ __divsi3:
|
||||||
#else
|
#else
|
||||||
__aeabi_uidivmod:
|
__aeabi_uidivmod:
|
||||||
ARMV4_UDIV32_BODY r0, r1, r0, r1, r2, r3, __div0_wrap, 1
|
ARMV4_UDIV32_BODY r0, r1, r0, r1, r2, r3, __div0_wrap, 1
|
||||||
.size __aeabi_uidivmod, . - __aeabi_uidivmo
|
.size __aeabi_uidivmod, . - __aeabi_uidivmod
|
||||||
|
|
||||||
__aeabi_idivmod:
|
__aeabi_idivmod:
|
||||||
ARMV4_SDIV32_BODY r0, r1, r0, r1, r2, r3, __div0_wrap, 1
|
ARMV4_SDIV32_BODY r0, r1, r0, r1, r2, r3, __div0_wrap, 1
|
||||||
|
@ -683,7 +683,7 @@ __divsi3:
|
||||||
#else
|
#else
|
||||||
__aeabi_uidivmod:
|
__aeabi_uidivmod:
|
||||||
ARMV5_UDIV32_BODY r0, r1, r0, r1, r2, r3, ip, __div0_wrap, 1
|
ARMV5_UDIV32_BODY r0, r1, r0, r1, r2, r3, ip, __div0_wrap, 1
|
||||||
.size __aeabi_uidivmod, . - __aeabi_uidivmo
|
.size __aeabi_uidivmod, . - __aeabi_uidivmod
|
||||||
|
|
||||||
__aeabi_idivmod:
|
__aeabi_idivmod:
|
||||||
str lr, [sp, #-4]
|
str lr, [sp, #-4]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue