* gcc.dg/uninit-I.c: Fix typos in dg-options and dg-warning directives.
authorRichard Henderson <rth@redhat.com>
Fri, 28 Jan 2005 00:42:46 +0000 (16:42 -0800)
committerRichard Henderson <rth@gcc.gnu.org>
Fri, 28 Jan 2005 00:42:46 +0000 (16:42 -0800)
From-SVN: r94356

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/uninit-I.c

index c810184073eed92174022c22142bbf0d69639a03..224841510a88bddb938981c65fa09bfa6217f209 100644 (file)
@@ -1,3 +1,7 @@
+2005-01-27  Richard Henderson  <rth@redhat.com>
+
+       * gcc.dg/uninit-I.c: Fix typos in dg-options and dg-warning directives.
+
 2005-01-27  Richard Sandiford  <rsandifo@redhat.com>
 
        * gcc.dg/intmax_t-1.c: Extend dg-error to cover mips*-elf targets.
index bd7c13a1feb933e57d59787cc42c486fb5928548..7be60d786b8e98f632062e7abc4515d8689db7ce 100644 (file)
@@ -1,8 +1,8 @@
 /* { dg-do compile } */
-/* { dg-options -O2 -Wuninitialized } */
+/* { dg-options "-O2 -Wuninitialized" } */
 
 int sys_msgctl (void)
 {
-  struct { int mode; } setbuf;  /* { dg-warning "'setbuf[.]mode' is used" } */
+  struct { int mode; } setbuf;  /* { dg-warning "'setbuf\.mode' is used" } */
   return setbuf.mode;
 }