summaryrefslogtreecommitdiffstats
path: root/tests/tcg
diff options
context:
space:
mode:
authorAlex Bennée2018-04-13 18:16:00 +0200
committerAlex Bennée2018-06-20 21:22:34 +0200
commit9b8381d1ed9f7c73a5a3f0dbff635a49ddc3f232 (patch)
treed5bec98b5f149852a89b6be459e8423734fb1e3d /tests/tcg
parenttests/tcg/x86_64: add Makefile.target (diff)
downloadqemu-9b8381d1ed9f7c73a5a3f0dbff635a49ddc3f232.tar.gz
qemu-9b8381d1ed9f7c73a5a3f0dbff635a49ddc3f232.tar.xz
qemu-9b8381d1ed9f7c73a5a3f0dbff635a49ddc3f232.zip
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>
Diffstat (limited to 'tests/tcg')
-rw-r--r--tests/tcg/i386/test-i386.c4
1 files changed, 2 insertions, 2 deletions
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];