+2000-12-03 Joseph S. Myers <jsm28@cam.ac.uk>
+
+ * gcc.c-torture/execute/20001203-1.c: New test.
+
2000-12-03 Neil Booth <neilb@earthling.net>
* gcc.dg/cpp/macro6.c: New test cases.
--- /dev/null
+/* Origin: PR c/410 from Jan Echternach
+ <jan.echternach@informatik.uni-rostock.de>,
+ adapted to a testcase by Joseph Myers <jsm28@cam.ac.uk>.
+*/
+
+extern void exit (int);
+
+static void
+foo (void)
+{
+ struct {
+ long a;
+ char b[1];
+ } x = { 2, { 0 } };
+}
+
+int
+main (void)
+{
+ int tmp;
+ foo ();
+ tmp = 1;
+ exit (0);
+}