aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/ChangeLog10
-rw-r--r--gcc/testsuite/gcc.dg/20000926-1.c2
-rw-r--r--gcc/testsuite/gcc.dg/940510-1.c3
-rw-r--r--gcc/testsuite/gcc.dg/noncompile/940510-1.c1
4 files changed, 13 insertions, 3 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index f854473..6079e4a 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,12 @@
+2000-11-28 Geoffrey Keating <geoffk@redhat.com>
+
+ * gcc.dg/noncompile/940510-1.c: Update to test c89 functionality.
+ Move from here ...
+ * gcc.dg/940510-1.c: ... to here.
+
+ * gcc.dg/20000926-1.c: GNU C now allows initializations of
+ zero-size arrays in toplevel structures.
+
2000-11-28 Jakub Jelinek <jakub@redhat.com>
* gcc.c-torture/execute/loop-8.c: New test.
@@ -160,7 +169,6 @@
* gcc.dg/20001117-1.c: New test.
->>>>>>> 1.855
2000-11-18 Richard Henderson <rth@redhat.com>
* gcc.c-torture/execute/nestfunc-3.c (main): Mask result to 32 bits.
diff --git a/gcc/testsuite/gcc.dg/20000926-1.c b/gcc/testsuite/gcc.dg/20000926-1.c
index 630cbcb..afaed98 100644
--- a/gcc/testsuite/gcc.dg/20000926-1.c
+++ b/gcc/testsuite/gcc.dg/20000926-1.c
@@ -22,6 +22,6 @@ struct PLAYBOOK playbook =
{
"BookName",
{
- { 1, "PName0" }, /* { dg-warning "excess elements in array initializer|(near initialization for `playbook.Play')" } */
+ { 1, "PName0" },
}
};
diff --git a/gcc/testsuite/gcc.dg/940510-1.c b/gcc/testsuite/gcc.dg/940510-1.c
new file mode 100644
index 0000000..5f241f5
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/940510-1.c
@@ -0,0 +1,3 @@
+/* { dg-do compile } */
+/* { dg-options "-std=c89 -pedantic" } */
+struct { int a[]; } x = { 0 }; /* { dg-error "(does not support)|(near initialization)" } */
diff --git a/gcc/testsuite/gcc.dg/noncompile/940510-1.c b/gcc/testsuite/gcc.dg/noncompile/940510-1.c
deleted file mode 100644
index 485c3d2..0000000
--- a/gcc/testsuite/gcc.dg/noncompile/940510-1.c
+++ /dev/null
@@ -1 +0,0 @@
-struct { int a[]; } x = { 0 }; /* { dg-error "array size missing" } */