Mercurial > mplayer.hg
changeset 13918:c0fa83fa7cec
compilation fix for gcc 3.4.2
author | reimar |
---|---|
date | Thu, 11 Nov 2004 13:33:30 +0000 |
parents | 03cff4c11665 |
children | d57caeb6cf0b |
files | mp3lib/dct64_3dnow.c mp3lib/dct64_k7.c |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mp3lib/dct64_3dnow.c Thu Nov 11 03:35:40 2004 +0000 +++ b/mp3lib/dct64_3dnow.c Thu Nov 11 13:33:30 2004 +0000 @@ -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)
--- a/mp3lib/dct64_k7.c Thu Nov 11 03:35:40 2004 +0000 +++ b/mp3lib/dct64_k7.c Thu Nov 11 13:33:30 2004 +0000 @@ -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)