From 35244064bbb2a853fb5c08898e8a74a7ec489aaa Mon Sep 17 00:00:00 2001 From: David Monniaux Date: Fri, 1 Feb 2019 15:45:39 +0100 Subject: block tail calls etc. --- test/monniaux/jpeg-6b/jcdctmgr.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'test/monniaux/jpeg-6b/jcdctmgr.c') diff --git a/test/monniaux/jpeg-6b/jcdctmgr.c b/test/monniaux/jpeg-6b/jcdctmgr.c index 658a674e..61fa79b9 100644 --- a/test/monniaux/jpeg-6b/jcdctmgr.c +++ b/test/monniaux/jpeg-6b/jcdctmgr.c @@ -243,14 +243,10 @@ forward_DCT (j_compress_ptr cinfo, jpeg_component_info * compptr, * for a < b to discover whether a/b is 0. * If your machine's division is fast enough, define FAST_DIVIDE. */ -#ifdef NO_32BIT_DIVISION -#define DIVIDE_BY(a,b) a = (long long) a / b -#else #ifdef FAST_DIVIDE #define DIVIDE_BY(a,b) a /= b #else #define DIVIDE_BY(a,b) if (a >= b) a /= b; else a = 0 -#endif #endif if (temp < 0) { temp = -temp; -- cgit