gcc.dg/pr39084.c: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@144068
138bc75d-0d04-0410-961f-
82ee72b054a4
+2009-02-10 Steve Ellcey <sje@cup.hp.com>
+
+ PR c/39084
+ gcc.dg/pr39084.c: New test.
+
2009-02-10 Jakub Jelinek <jakub@redhat.com>
PR target/39139
--- /dev/null
+/* { dg-do compile } */
+/* { dg-options "-O2" } */
+
+struct color { int i; };
+static const struct color col;
+struct color * f(void)
+{
+ return (struct color *) &col;
+}
+
+struct color { int j; }; /* { dg-error "redefinition of" } */