mirror of https://gitee.com/openkylin/qemu.git
tests/tcg/i386/test-i386: use modern vector_size attributes
The compiler complains about the old __mode__ style attributes. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
This commit is contained in:
parent
3a082ec01b
commit
9b8381d1ed
tests/tcg/i386
|
@ -2106,8 +2106,8 @@ static void test_enter(void)
|
|||
|
||||
#ifdef TEST_SSE
|
||||
|
||||
typedef int __m64 __attribute__ ((__mode__ (__V2SI__)));
|
||||
typedef float __m128 __attribute__ ((__mode__(__V4SF__)));
|
||||
typedef int __m64 __attribute__ ((vector_size(8)));
|
||||
typedef float __m128 __attribute__ ((vector_size(16)));
|
||||
|
||||
typedef union {
|
||||
double d[2];
|
||||
|
|
Loading…
Reference in New Issue