]> git.sesse.net Git - vlc/commitdiff
Cleanup after [17638ecf0bd]
authorRafaël Carré <rafael.carre@gmail.com>
Mon, 28 Jun 2010 19:35:16 +0000 (21:35 +0200)
committerRafaël Carré <rafael.carre@gmail.com>
Mon, 28 Jun 2010 19:36:41 +0000 (21:36 +0200)
There is no need to change the ASM name of constants
This might fix compilation on compilers not supporting all gcc asm()
features

modules/mmx/i420_rgb_mmx.h

index 587ba33ea6502434d06af1bb355b698319d3dae2..cd1155b4ba230e0c6142938df501df0c0376b499 100644 (file)
 #ifdef MODULE_NAME_IS_i420_rgb_mmx
 
 /* hope these constant values are cache line aligned */
-#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3)
-#define USED_U64(foo) \
-    static const uint64_t foo __asm__ (#foo) __attribute__((used))
-#else
-#define USED_U64(foo) \
-    static const uint64_t foo __asm__ (#foo) __attribute__((unused))
-#endif
-USED_U64(mmx_80w)     = 0x0080008000800080ULL; /* Will be referenced as %4 in inline asm */
-USED_U64(mmx_10w)     = 0x1010101010101010ULL; /* -- as %5 */
-USED_U64(mmx_00ffw)   = 0x00ff00ff00ff00ffULL; /* -- as %6 */
-USED_U64(mmx_Y_coeff) = 0x253f253f253f253fULL; /* -- as %7 */
-
-USED_U64(mmx_U_green) = 0xf37df37df37df37dULL; /* -- as %8 */
-USED_U64(mmx_U_blue)  = 0x4093409340934093ULL; /* -- as %9 */
-USED_U64(mmx_V_red)   = 0x3312331233123312ULL; /* -- as %10 */
-USED_U64(mmx_V_green) = 0xe5fce5fce5fce5fcULL; /* -- as %11 */
-
-USED_U64(mmx_mask_f8) = 0xf8f8f8f8f8f8f8f8ULL; /* -- as %12 */
-USED_U64(mmx_mask_fc) = 0xfcfcfcfcfcfcfcfcULL; /* -- as %13 */
-#undef USED_U64
+static const uint64_t mmx_80w     = 0x0080008000800080ULL; /* Will be referenced as %4 in inline asm */
+static const uint64_t mmx_10w     = 0x1010101010101010ULL; /* -- as %5 */
+static const uint64_t mmx_00ffw   = 0x00ff00ff00ff00ffULL; /* -- as %6 */
+static const uint64_t mmx_Y_coeff = 0x253f253f253f253fULL; /* -- as %7 */
+
+static const uint64_t mmx_U_green = 0xf37df37df37df37dULL; /* -- as %8 */
+static const uint64_t mmx_U_blue  = 0x4093409340934093ULL; /* -- as %9 */
+static const uint64_t mmx_V_red   = 0x3312331233123312ULL; /* -- as %10 */
+static const uint64_t mmx_V_green = 0xe5fce5fce5fce5fcULL; /* -- as %11 */
+
+static const uint64_t mmx_mask_f8 = 0xf8f8f8f8f8f8f8f8ULL; /* -- as %12 */
+static const uint64_t mmx_mask_fc = 0xfcfcfcfcfcfcfcfcULL; /* -- as %13 */
 
 #if defined(CAN_COMPILE_MMX)