forked from len0rd/rockbox
Fix red. Remove a small array from IRAM that is not critical to performance.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27359 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
811af5968a
commit
c6898a0d55
1 changed files with 1 additions and 1 deletions
|
@ -251,7 +251,7 @@ uint32_t random_int(void)
|
||||||
/* precision of values in pow2_tab */
|
/* precision of values in pow2_tab */
|
||||||
#define POWTBL_BITS (31-(INTERP_BITS))
|
#define POWTBL_BITS (31-(INTERP_BITS))
|
||||||
#define POWTBL_PRECIS (1U<<(POWTBL_BITS))
|
#define POWTBL_PRECIS (1U<<(POWTBL_BITS))
|
||||||
static const uint32_t pow2_tab[] ICONST_ATTR = {
|
static const uint32_t pow2_tab[] ICONST_ATTR_FAAD_LARGE_IRAM = {
|
||||||
UFIX_CONST(1.000000000000000,POWTBL_PRECIS),
|
UFIX_CONST(1.000000000000000,POWTBL_PRECIS),
|
||||||
UFIX_CONST(1.010889286051701,POWTBL_PRECIS),
|
UFIX_CONST(1.010889286051701,POWTBL_PRECIS),
|
||||||
UFIX_CONST(1.021897148654117,POWTBL_PRECIS),
|
UFIX_CONST(1.021897148654117,POWTBL_PRECIS),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue