+2020-03-18 David Malcolm <dmalcolm@redhat.com>
+
+ PR analyzer/94047
+ * gcc.dg/analyzer/pr94047.c: New test.
+
2020-03-18 Richard Biener <rguenther@suse.de>
PR middle-end/94206
--- /dev/null
+/* { dg-additional-options "-Wno-analyzer-too-complex" } */
+/* TODO: the above ought not to be necessary, but currently is due to a
+ state explosion within the for loop. */
+
+typedef struct list
+{
+ struct list *next;
+} tlist;
+
+void
+bar (struct list *l)
+{
+ l->next = l->next->next;
+}
+
+void
+foo (void)
+{
+ struct list l;
+ tlist t = l;
+ for (;;)
+ bar (&t);
+}