gcc/testsuite/ChangeLog:
* gcc.dg/Wstringop-overflow-23.c: Use the correct argument type.
* gcc.dg/Wstringop-overflow-24.c: Same.
From-SVN: r279059
+2019-12-06 Martin Sebor <msebor@redhat.com>
+
+ * gcc.dg/Wstringop-overflow-23.c: Use the correct argument type.
+ * gcc.dg/Wstringop-overflow-24.c: Same.
+
2019-12-06 Richard Sandiford <richard.sandiford@arm.com>
* g++.dg/ext/sve-sizeless-1.C: New test.
}
-WRONLY (4, 3) void (*pfwr4_3)(int, const char*, int, int*);
+WRONLY (4, 3) void (*pfwr4_3)(int, const char*, int, int32_t*);
void test_pfwr4_3 (void)
{
the attribute without a size operand. */
RDONLY (1) void
-rd1_int (const int*); // { dg-message "in a call to function 'rd1_int' declared with attribute 'read_only \\\(1\\\)'" }
+rd1_int (const int32_t*); // { dg-message "in a call to function 'rd1_int' declared with attribute 'read_only \\\(1\\\)'" }
void test_rd1_int (void)
{
}
-WRONLY (4, 3) void (*pfwr4_3)(int, const char*, int, int*);
+WRONLY (4, 3) void (*pfwr4_3)(int, const char*, int, int32_t*);
void test_pfwr4_3 (void)
{