aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/testsuite/ChangeLog6
-rw-r--r--gcc/testsuite/gcc.dg/format-nonlit-1.c2
-rw-r--r--gcc/testsuite/gcc.dg/format-nonlit-2.c2
3 files changed, 8 insertions, 2 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index b458ead..0b5ed35 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,9 @@
+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.
diff --git a/gcc/testsuite/gcc.dg/format-nonlit-1.c b/gcc/testsuite/gcc.dg/format-nonlit-1.c
index dfcd84b..e40bf08 100644
--- a/gcc/testsuite/gcc.dg/format-nonlit-1.c
+++ b/gcc/testsuite/gcc.dg/format-nonlit-1.c
@@ -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" } */
diff --git a/gcc/testsuite/gcc.dg/format-nonlit-2.c b/gcc/testsuite/gcc.dg/format-nonlit-2.c
index c20ed08..9c3eee8 100644
--- a/gcc/testsuite/gcc.dg/format-nonlit-2.c
+++ b/gcc/testsuite/gcc.dg/format-nonlit-2.c
@@ -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" } */