OSDN Git Service

*** empty log message ***
authorzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 11 Mar 1999 16:00:03 +0000 (16:00 +0000)
committerzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 11 Mar 1999 16:00:03 +0000 (16:00 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@25709 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/gcc.dg/uninit-1.c [new file with mode: 0644]

diff --git a/gcc/testsuite/gcc.dg/uninit-1.c b/gcc/testsuite/gcc.dg/uninit-1.c
new file mode 100644 (file)
index 0000000..9183881
--- /dev/null
@@ -0,0 +1,30 @@
+/* Spurious uninitialized variable warnings, case 1.
+   Taken from cppfiles.c (merge_include_chains) */
+/* { dg-do compile } */
+/* { dg-options "-O -Wuninitialized" } */
+
+struct list
+{
+  struct list *next;
+  int id;
+};
+
+extern void free (void *);
+
+void remove_dupes (struct list *el)
+{
+  struct list *p, *q, *r;  /* { dg-bogus "r" "uninitialized variable warning" { xfail *-*-* } } */
+
+  for (p = el; p; p = p->next)
+  {
+    for (q = el; q != p; q = q->next)
+      if (q->id == p->id)
+      {
+       r->next = p->next;
+       free (p);
+       p = r;
+       break;
+      }
+    r = p;
+  }
+}