diff options
| author | Rafaël Carré <rafael.carre@gmail.com> | 2010-06-11 04:50:51 +0000 |
|---|---|---|
| committer | Rafaël Carré <rafael.carre@gmail.com> | 2010-06-11 04:50:51 +0000 |
| commit | 95ef367854f03760ea248ad62900162efe5b98c9 (patch) | |
| tree | 256810052d949d2da923efc63cc3473bb9450d7b | |
| parent | b4a9564790575c645d855c23f7f2e07ae03c1c19 (diff) | |
| download | rockbox-95ef367854f03760ea248ad62900162efe5b98c9.zip rockbox-95ef367854f03760ea248ad62900162efe5b98c9.tar.gz rockbox-95ef367854f03760ea248ad62900162efe5b98c9.tar.bz2 rockbox-95ef367854f03760ea248ad62900162efe5b98c9.tar.xz | |
drop 'req' from gas macro, not available in binutils 2.16
The build will error out anyway if regs are left blank
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26758 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/export/config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h index 3e269c2..24e258d 100644 --- a/firmware/export/config.h +++ b/firmware/export/config.h @@ -712,7 +712,7 @@ Lyre prototype 1 */ #if defined(CPU_ARM) && defined(__ASSEMBLER__) /* ARMv4T doesn't switch the T bit when popping pc directly, we must use BX */ -.macro ldmpc cond="", order="ia", regs:req +.macro ldmpc cond="", order="ia", regs #if ARM_ARCH == 4 && defined(USE_THUMB) ldm\cond\order sp!, { \regs, lr } bx\cond lr |