diff options
| author | Thom Johansen <thomj@rockbox.org> | 2005-12-15 12:47:34 +0000 |
|---|---|---|
| committer | Thom Johansen <thomj@rockbox.org> | 2005-12-15 12:47:34 +0000 |
| commit | 80b30761a5d09963c46ac6c6371ffca0f54c908b (patch) | |
| tree | 95515de41a7b47a41d1f33c9e0f6bc7559c4deca | |
| parent | df7f61e0c17c43088bcdcfded0ca657c274b2d2a (diff) | |
| download | rockbox-80b30761a5d09963c46ac6c6371ffca0f54c908b.zip rockbox-80b30761a5d09963c46ac6c6371ffca0f54c908b.tar.gz rockbox-80b30761a5d09963c46ac6c6371ffca0f54c908b.tar.bz2 rockbox-80b30761a5d09963c46ac6c6371ffca0f54c908b.tar.xz | |
This wont work after all. Someone please introduce -fomit-frame-pointer for debug builds, we don't need the frame pointer anyway.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8243 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/dsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -466,7 +466,7 @@ static long dither_sample(long sample, long bias, long mask, * the src array if gain was applied. * Note that this must be called before the resampler. */ -#if defined(CPU_COLDFIRE) && !defined(SIMULATOR) && !defined(DEBUG) +#if defined(CPU_COLDFIRE) && !defined(SIMULATOR) static const long crossfeed_coefs[6] ICONST_ATTR = { LOW, LOW_COMP, HIGH_NEG, HIGH_COMP, ATT, ATT_COMP }; |