From: Georg-Johann Lay Date: Mon, 19 Jan 2026 17:33:30 +0000 (+0100) Subject: testsuite/123175 - Use int32_t instead of int in vec-type construction. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1c06e68228226a723e97687be62f06e373b40b3a;p=thirdparty%2Fgcc.git testsuite/123175 - Use int32_t instead of int in vec-type construction. gcc/testsuite/ PR testsuite/123175 * gcc.dg/torture/pr123175-1.c: Use int32_t instead of int in vec-type construction. * gcc.dg/torture/pr123175-2.c: Same. --- diff --git a/gcc/testsuite/gcc.dg/torture/pr123175-1.c b/gcc/testsuite/gcc.dg/torture/pr123175-1.c index eea341ee2cb..5561e96ffcc 100644 --- a/gcc/testsuite/gcc.dg/torture/pr123175-1.c +++ b/gcc/testsuite/gcc.dg/torture/pr123175-1.c @@ -1,8 +1,8 @@ /* { dg-do run } */ /* { dg-additional-options "-fgimple" } */ -typedef int v4si __attribute__((vector_size(16))); -typedef int v2si __attribute__((vector_size(8))); +typedef __INT32_TYPE__ v4si __attribute__((vector_size(16))); +typedef __INT32_TYPE__ v2si __attribute__((vector_size(8))); typedef char v4qi __attribute__((vector_size(4))); v4si res; diff --git a/gcc/testsuite/gcc.dg/torture/pr123175-2.c b/gcc/testsuite/gcc.dg/torture/pr123175-2.c index 32431bee914..e2137797f17 100644 --- a/gcc/testsuite/gcc.dg/torture/pr123175-2.c +++ b/gcc/testsuite/gcc.dg/torture/pr123175-2.c @@ -1,8 +1,8 @@ /* { dg-do run } */ /* { dg-additional-options "-fgimple" } */ -typedef int v4si __attribute__((vector_size(16))); -typedef int v2si __attribute__((vector_size(8))); +typedef __INT32_TYPE__ v4si __attribute__((vector_size(16))); +typedef __INT32_TYPE__ v2si __attribute__((vector_size(8))); typedef char v4qi __attribute__((vector_size(4))); v4si res;