From: Andre Noll Date: Mon, 15 Aug 2011 17:36:46 +0000 (+0200) Subject: imdct: Remove dead store. X-Git-Tag: v0.4.9~18^2~5 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=746031e120cbc1afa4c191986a55f1789f5d194a imdct: Remove dead store. imdct.c:296:2: warning: Value stored to 'output' is never read output += n4; ^ ~~ --- diff --git a/imdct.c b/imdct.c index 32928487..aab498a3 100644 --- a/imdct.c +++ b/imdct.c @@ -293,7 +293,6 @@ static void imdct_half(struct mdct_context *s, fftsample_t *output, fft(&s->fft, z); /* post rotation + reordering */ - output += n4; for (k = 0; k < n8; k++) { fftsample_t r0, i0, r1, i1; CMUL(r0, i1, z[n8 - k - 1].im, z[n8 - k - 1].re,