From: Alex Bennée Date: Fri, 13 Apr 2018 16:16:00 +0000 (+0100) Subject: tests/tcg/i386/test-i386: use modern vector_size attributes X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=9b8381d1ed9f7c73a5a3f0dbff635a49ddc3f232;p=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 Reviewed-by: Richard Henderson Reviewed-by: Philippe Mathieu-Daudé Tested-by: Philippe Mathieu-Daudé --- diff --git a/tests/tcg/i386/test-i386.c b/tests/tcg/i386/test-i386.c index cae6a7773a..caef4da176 100644 --- a/tests/tcg/i386/test-i386.c +++ b/tests/tcg/i386/test-i386.c @@ -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];