summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThom Johansen <thomj@rockbox.org>2005-12-15 12:47:34 +0000
committerThom Johansen <thomj@rockbox.org>2005-12-15 12:47:34 +0000
commit80b30761a5d09963c46ac6c6371ffca0f54c908b (patch)
tree95515de41a7b47a41d1f33c9e0f6bc7559c4deca
parentdf7f61e0c17c43088bcdcfded0ca657c274b2d2a (diff)
downloadrockbox-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dsp.c b/apps/dsp.c
index 20aa1f8..19cb669 100644
--- a/apps/dsp.c
+++ b/apps/dsp.c
@@ -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
};