[MPlayer-cvslog] CVS: main/mp3lib dct64_3dnow.c, 1.7, 1.8 dct64_k7.c, 1.9, 1.10
Reimar Döffinger CVS
syncmail at mplayerhq.hu
Thu Nov 11 14:33:35 CET 2004
CVS change done by Reimar Döffinger CVS
Update of /cvsroot/mplayer/main/mp3lib
In directory mail:/var2/tmp/cvs-serv456
Modified Files:
dct64_3dnow.c dct64_k7.c
Log Message:
compilation fix for gcc 3.4.2
Index: dct64_3dnow.c
===================================================================
RCS file: /cvsroot/mplayer/main/mp3lib/dct64_3dnow.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- dct64_3dnow.c 26 Apr 2004 10:09:31 -0000 1.7
+++ dct64_3dnow.c 11 Nov 2004 13:33:30 -0000 1.8
@@ -12,7 +12,7 @@
#include "../config.h"
#include "../mangle.h"
-static unsigned long long int __attribute__((aligned(8))) x_plus_minus_3dnow = 0x8000000000000000ULL;
+static unsigned long long int attribute_used __attribute__((aligned(8))) x_plus_minus_3dnow = 0x8000000000000000ULL;
static float attribute_used plus_1f = 1.0;
void dct64_MMX_3dnow(real *a,real *b,real *c)
Index: dct64_k7.c
===================================================================
RCS file: /cvsroot/mplayer/main/mp3lib/dct64_k7.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- dct64_k7.c 26 Apr 2004 10:09:31 -0000 1.9
+++ dct64_k7.c 11 Nov 2004 13:33:30 -0000 1.10
@@ -12,7 +12,7 @@
#include "../config.h"
#include "../mangle.h"
-static unsigned long long int __attribute__((aligned(8))) x_plus_minus_3dnow = 0x8000000000000000ULL;
+static unsigned long long int attribute_used __attribute__((aligned(8))) x_plus_minus_3dnow = 0x8000000000000000ULL;
static float attribute_used plus_1f = 1.0;
void dct64_MMX_3dnowex(real *a,real *b,real *c)
More information about the MPlayer-cvslog
mailing list