Commit 02428c5d by Joseph Myers Committed by Joseph Myers

format-nonlit-1.c, [...]: Use __SIZE_TYPE__ instead of int for type of integers cast to pointers.

	* gcc.dg/format-nonlit-1.c, gcc.dg/format-nonlit-2.c: Use
	__SIZE_TYPE__ instead of int for type of integers cast to
	pointers.

From-SVN: r38119
parent 6c1ce62b
2000-12-07 Joseph S. Myers <jsm28@cam.ac.uk>
* gcc.dg/format-nonlit-1.c, gcc.dg/format-nonlit-2.c: Use
__SIZE_TYPE__ instead of int for type of integers cast to
pointers.
2000-12-07 Jakub Jelinek <jakub@redhat.com>
* g++.old-deja/g++.other/cleanup4.C: New test.
......
......@@ -6,7 +6,7 @@
extern int printf (const char *, ...);
void
foo (char *s, int i)
foo (char *s, __SIZE_TYPE__ i)
{
printf ((const char *)i, i); /* { dg-warning "argument types" "non-literal" } */
printf (s, i); /* { dg-warning "argument types" "non-literal" } */
......
......@@ -6,7 +6,7 @@
extern int printf (const char *, ...);
void
foo (char *s, int i)
foo (char *s, __SIZE_TYPE__ i)
{
printf ((const char *)i, i); /* { dg-warning "argument types" "non-literal" } */
printf (s, i); /* { dg-warning "argument types" "non-literal" } */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment