summaryrefslogtreecommitdiffstats
path: root/libvo/osd.c
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-04-26 10:12:40 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-04-26 10:12:40 +0000
commitbaa587170e63566f91dad212ff8b42d6c7966f4a (patch)
treef9ea544cad0a0382312e43f8bdbbfa4fdcab99fc /libvo/osd.c
parent681827cb68fa33a3722e0a762b5b5f5477ef7291 (diff)
downloadmpv-baa587170e63566f91dad212ff8b42d6c7966f4a.tar.bz2
mpv-baa587170e63566f91dad212ff8b42d6c7966f4a.tar.xz
attribute_used for gcc3.4
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12293 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/osd.c')
-rw-r--r--libvo/osd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/osd.c b/libvo/osd.c
index 42c996c000..dadb77a7f1 100644
--- a/libvo/osd.c
+++ b/libvo/osd.c
@@ -19,7 +19,7 @@ extern int verbose; // defined in mplayer.c
#endif
#ifdef CAN_COMPILE_X86_ASM
-static const uint64_t bFF __attribute__((aligned(8))) = 0xFFFFFFFFFFFFFFFFULL;
+static const uint64_t bFF attribute_used __attribute__((aligned(8))) = 0xFFFFFFFFFFFFFFFFULL;
static const unsigned long long mask24lh __attribute__((aligned(8))) = 0xFFFF000000000000ULL;
static const unsigned long long mask24hl __attribute__((aligned(8))) = 0x0000FFFFFFFFFFFFULL;
#endif