aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/20010113-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/20010113-1.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/compile/20010113-1.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/20010113-1.c b/gcc/testsuite/gcc.c-torture/compile/20010113-1.c
deleted file mode 100644
index 35b7c1f1d7e..00000000000
--- a/gcc/testsuite/gcc.c-torture/compile/20010113-1.c
+++ /dev/null
@@ -1,15 +0,0 @@
-/* Origin: PR c/364 from and@genesyslab.com, very much reduced to a
- testcase by Joseph Myers <jsm28@cam.ac.uk>.
-
- The initializer of z is a valid address constant, and GCC 2.95.2
- accepts it as such. CVS GCC as of 2001-01-13 rejects it, but accepts
- it if y is changed to x in the initializer. */
-
-struct {
- struct {
- int x;
- int y;
- } p;
-} v;
-
-int *z = &((&(v.p))->y);