# HG changeset patch # User reimar # Date 1201466749 0 # Node ID 8b087434f31bd543a2c0e1fd8e06e3b3458181ba # Parent c0ef7b5d4a4f2d52b643f99bd0438592636d6ec8 Use DECLARE_ALIGNED in yet another place diff -r c0ef7b5d4a4f -r 8b087434f31b i386/simple_idct_mmx.c --- a/i386/simple_idct_mmx.c Sun Jan 27 19:59:11 2008 +0000 +++ b/i386/simple_idct_mmx.c Sun Jan 27 20:45:49 2008 +0000 @@ -51,7 +51,7 @@ static const uint64_t attribute_used __attribute__((aligned(8))) wm1010= 0xFFFF0000FFFF0000ULL; static const uint64_t attribute_used __attribute__((aligned(8))) d40000= 0x0000000000040000ULL; -static const int16_t __attribute__((aligned(8))) coeffs[]= { +DECLARE_ALIGNED(8, static const int16_t, coeffs[])= { 1<<(ROW_SHIFT-1), 0, 1<<(ROW_SHIFT-1), 0, // 1<<(COL_SHIFT-1), 0, 1<<(COL_SHIFT-1), 0, // 0, 1<<(COL_SHIFT-1-16), 0, 1<<(COL_SHIFT-1-16),