summaryrefslogtreecommitdiff
path: root/firmware/target/arm/pbell/vibe500
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2010-06-11 04:41:36 +0000
committerRafaël Carré <rafael.carre@gmail.com>2010-06-11 04:41:36 +0000
commit45c7498f59ad2889f2120a865a51043004eddd5d (patch)
tree1a62b0e8549a7f2750679de8d7dd3f82039c5719 /firmware/target/arm/pbell/vibe500
parentfe7ca44471b309a0adea563cce947de9efb62ab5 (diff)
downloadrockbox-45c7498f59ad2889f2120a865a51043004eddd5d.tar.gz
rockbox-45c7498f59ad2889f2120a865a51043004eddd5d.zip
FS#11335 by me: make ARM assembly functions thumb-friendly
We can't pop into pc on ARMv4t when using thumb: the T bit won't be modified if we are returning to a thumb function Code running on ARMv4t should use the new ldrpc / ldmpc macros instead of ldr pc, [sp], #4 and ldm(cond) sp!, {regs, pc} No modification on pure ARM builds and ARMv5+ Note: USE_THUMB is currently never defined, no targets can currently be built with -mthumb, see FS#6734 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26756 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/pbell/vibe500')
-rw-r--r--firmware/target/arm/pbell/vibe500/lcd-as-vibe500.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/arm/pbell/vibe500/lcd-as-vibe500.S b/firmware/target/arm/pbell/vibe500/lcd-as-vibe500.S
index d5d51575a7..9079be6aa7 100644
--- a/firmware/target/arm/pbell/vibe500/lcd-as-vibe500.S
+++ b/firmware/target/arm/pbell/vibe500/lcd-as-vibe500.S
@@ -243,7 +243,7 @@ lcd_write_yuv420_lines:
243 subs r1, r1, #2 @ subtract block from width 243 subs r1, r1, #2 @ subtract block from width
244 bgt 10b @ loop line @ 244 bgt 10b @ loop line @
245 @ 245 @
246 ldmfd sp!, { r4-r11, pc } @ restore registers and return 246 ldmpc regs=r4-r11 @ restore registers and return
247 .ltorg @ dump constant pool 247 .ltorg @ dump constant pool
248 .size lcd_write_yuv420_lines, .-lcd_write_yuv420_lines 248 .size lcd_write_yuv420_lines, .-lcd_write_yuv420_lines
249 249
@@ -551,6 +551,6 @@ lcd_write_yuv420_lines_odither:
551 subs r1, r1, #2 @ subtract block from width 551 subs r1, r1, #2 @ subtract block from width
552 bgt 10b @ loop line @ 552 bgt 10b @ loop line @
553 @ 553 @
554 ldmfd sp!, { r4-r11, pc } @ restore registers and return 554 ldmpc regs=r4-r11 @ restore registers and return
555 .ltorg @ dump constant pool 555 .ltorg @ dump constant pool
556 .size lcd_write_yuv420_lines_odither, .-lcd_write_yuv420_lines_odither 556 .size lcd_write_yuv420_lines_odither, .-lcd_write_yuv420_lines_odither