OSDN Git Service

* gcc.dg/format/ms_c90-printf-1.c, gcc.dg/format/ms_c90-scanf-1.c:
authorjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 26 Oct 2011 00:36:44 +0000 (00:36 +0000)
committerjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 26 Oct 2011 00:36:44 +0000 (00:36 +0000)
Update expected messages.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@180465 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/format/ms_c90-printf-1.c
gcc/testsuite/gcc.dg/format/ms_c90-scanf-1.c

index 673e53a..dbe2481 100644 (file)
@@ -1,3 +1,8 @@
+2011-10-25  Joseph Myers  <joseph@codesourcery.com>
+
+       * gcc.dg/format/ms_c90-printf-1.c, gcc.dg/format/ms_c90-scanf-1.c:
+       Update expected messages.
+
 2011-10-25  Eric Botcazou  <ebotcazou@adacore.com>
 
        * gcc.dg/vect/slp-multitypes-2.c: Do not XFAIL on SPARC 32-bit.
index f99d4c4..cce2342 100644 (file)
@@ -167,7 +167,7 @@ foo (int i, int i1, int i2, unsigned int u, double d, char *s, void *p,
   */
   printf ("%d", u);
   /* Wrong number of arguments.  */
-  printf ("%d%d", i); /* { dg-warning "arguments" "wrong number of args" } */
+  printf ("%d%d", i); /* { dg-warning "matching" "wrong number of args" } */
   printf ("%d", i, i); /* { dg-warning "arguments" "wrong number of args" } */
   /* Miscellaneous bogus constructions.  */
   printf (""); /* { dg-warning "zero-length" "warning for empty format" } */
index 6e2cb10..f52ed20 100644 (file)
@@ -106,7 +106,7 @@ foo (int *ip, unsigned int *uip, short int *hp, unsigned short int *uhp,
   scanf ("%s", cs); /* { dg-warning "constant" "%s writing into const" } */
   scanf ("%p", pcp); /* { dg-warning "constant" "%p writing into const" } */
   /* Wrong number of arguments.  */
-  scanf ("%d%d", ip); /* { dg-warning "arguments" "wrong number of args" } */
+  scanf ("%d%d", ip); /* { dg-warning "matching" "wrong number of args" } */
   scanf ("%d", ip, ip); /* { dg-warning "arguments" "wrong number of args" } */
   /* Miscellaneous bogus constructions.  */
   scanf (""); /* { dg-warning "zero-length" "warning for empty format" } */