* mc.c: h264 encoder library (Motion Compensation)
*****************************************************************************
* Copyright (C) 2003 Laurent Aimar
- * $Id: mc-c.c,v 1.1 2004/06/03 19:27:07 fenrir Exp $
+ * $Id: mc-c.c,v 1.2 2004/06/09 19:35:07 fenrir Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
#include "../clip1.h"
#include "mc.h"
-#define UNUSED_UINT64( foo ) \
- static const uint64_t foo __asm__ (#foo) __attribute__((unused))
+#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3)
+#define USED_UINT64(foo) \
+ static const uint64_t foo __asm__ (#foo) __attribute__((used))
+#else
+#define USED_UINT64(foo) \
+ static const uint64_t foo __asm__ (#foo) __attribute__((unused))
+#endif
UNUSED_UINT64( x264_w0x10 ) = 0x0010001000100010ULL;