Fix testcases for PR c/78304

The testcases as written made assumptions about size_t and long
being invalid for use with "%u".

We only need some invalid type, so this patch converts them to
attempt a "const char *" with "%u", which should be invalid for
every target.

gcc/testsuite/ChangeLog:
	PR c/78304
	* gcc.dg/format/pr78304.c: Convert argument from integral type
	to a pointer.
	* gcc.dg/format/pr78304-2.c: Likewise.

From-SVN: r244502
This commit is contained in:
David Malcolm 2017-01-16 18:08:45 +00:00 committed by David Malcolm
parent 76689ffc1e
commit 0ef1f9cd8c
3 changed files with 11 additions and 4 deletions

View File

@ -1,3 +1,10 @@
2017-01-16 David Malcolm <dmalcolm@redhat.com>
PR c/78304
* gcc.dg/format/pr78304.c: Convert argument from integral type
to a pointer.
* gcc.dg/format/pr78304-2.c: Likewise.
2017-01-16 Carl Love <cel@us.ibm.com>
* gcc.target/powerpc/builtins-3.c: New vec_nabs testcase.

View File

@ -5,7 +5,7 @@ extern int printf (const char *, ...);
# define PRIu32 "u"
void test (long size)
void test (const char *msg)
{
printf ("size: %" PRIu32 "\n", size); /* { dg-warning "expects argument of type" } */
printf ("size: %" PRIu32 "\n", msg); /* { dg-warning "expects argument of type" } */
}

View File

@ -4,7 +4,7 @@
#include <inttypes.h>
#include <stdio.h>
void test (size_t size)
void test (const char *msg)
{
printf ("size: %" PRIu32 "\n", size); /* { dg-warning "expects argument of type" } */
printf ("size: %" PRIu32 "\n", msg); /* { dg-warning "expects argument of type" } */
}