comparison postproc/rgb2rgb_template.c @ 7421:0684cad9b204

use detected WORDSIZE instead of warning, when inttypes.h doesn't define __WORDSIZE
author arpi
date Mon, 16 Sep 2002 19:39:57 +0000
parents da27a1bc1763
children 4d6369c408b5
comparison
equal deleted inserted replaced
7420:78678f03c28d 7421:0684cad9b204
10 10
11 #include <stddef.h> 11 #include <stddef.h>
12 #include <inttypes.h> /* for __WORDSIZE */ 12 #include <inttypes.h> /* for __WORDSIZE */
13 13
14 #ifndef __WORDSIZE 14 #ifndef __WORDSIZE
15 #warning You have misconfigured system and probably will lose performance! 15 // #warning You have misconfigured system and probably will lose performance!
16 #define __WORDSIZE MP_WORDSIZE
16 #endif 17 #endif
17 18
18 #undef PREFETCH 19 #undef PREFETCH
19 #undef MOVNTQ 20 #undef MOVNTQ
20 #undef EMMS 21 #undef EMMS