diff options
| author | Nils Wallménius <nils@rockbox.org> | 2010-06-29 14:57:52 +0000 |
|---|---|---|
| committer | Nils Wallménius <nils@rockbox.org> | 2010-06-29 14:57:52 +0000 |
| commit | 7c716d6eac5c81085e1d79d8fd70cba7e066747a (patch) | |
| tree | c8f3b50f0a9e4642cb3d6712286f9454aad3a788 | |
| parent | 5af120f1cb6269aac73bd3b3aa9665884508fc51 (diff) | |
| download | rockbox-7c716d6eac5c81085e1d79d8fd70cba7e066747a.zip rockbox-7c716d6eac5c81085e1d79d8fd70cba7e066747a.tar.gz rockbox-7c716d6eac5c81085e1d79d8fd70cba7e066747a.tar.bz2 rockbox-7c716d6eac5c81085e1d79d8fd70cba7e066747a.tar.xz | |
Clean up a leftover preprocessor symbol and improve the workaround for the 'arm-elf and static functions in iram' quirk so it doesn't affect builds with eabi toolchain (only affects nano2g).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27176 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/codecs/libtremor/config-tremor.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/apps/codecs/libtremor/config-tremor.h b/apps/codecs/libtremor/config-tremor.h index abed965..d6b2237 100644 --- a/apps/codecs/libtremor/config-tremor.h +++ b/apps/codecs/libtremor/config-tremor.h @@ -19,14 +19,10 @@ #endif #endif -#ifndef ICODE_ATTR_TREMOR_MDCT -#define ICODE_ATTR_TREMOR_MDCT ICODE_ATTR -#endif - /* Workaround for gcc bug where all static functions are called with short calls */ #if !defined(ICODE_ATTR_TREMOR_NOT_MDCT) && (CONFIG_CPU==S5L8701) -#define STATICIRAM_NOT_MDCT +#define STATICIRAM_NOT_MDCT STATICIRAM #else #define STATICIRAM_NOT_MDCT static #endif |