Replace more uses of __attribute__((aligned)) by DECLARE_ALIGNED.

Originally committed as revision 29349 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
This commit is contained in:
Ramiro Polla 2009-06-04 22:10:52 +00:00
parent 92db623584
commit 934626a9f9
1 changed files with 2 additions and 2 deletions

View File

@ -2258,7 +2258,7 @@ static inline void RENAME(hyscale)(SwsContext *c, uint16_t *dst, long dstWidth,
#if HAVE_MMX2 #if HAVE_MMX2
int i; int i;
#if defined(PIC) #if defined(PIC)
uint64_t ebxsave __attribute__((aligned(8))); DECLARE_ALIGNED(8, uint64_t, ebxsave);
#endif #endif
if (canMMX2BeUsed) if (canMMX2BeUsed)
{ {
@ -2454,7 +2454,7 @@ inline static void RENAME(hcscale)(SwsContext *c, uint16_t *dst, long dstWidth,
#if HAVE_MMX2 #if HAVE_MMX2
int i; int i;
#if defined(PIC) #if defined(PIC)
uint64_t ebxsave __attribute__((aligned(8))); DECLARE_ALIGNED(8, uint64_t, ebxsave);
#endif #endif
if (canMMX2BeUsed) if (canMMX2BeUsed)
{ {