From 80b30761a5d09963c46ac6c6371ffca0f54c908b Mon Sep 17 00:00:00 2001 From: Thom Johansen Date: Thu, 15 Dec 2005 12:47:34 +0000 Subject: [PATCH] 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 --- apps/dsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dsp.c b/apps/dsp.c index 20aa1f895b..19cb669a06 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 };