X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fgcc.c-torture%2Fcompile%2F20010113-1.c;fp=gcc%2Ftestsuite%2Fgcc.c-torture%2Fcompile%2F20010113-1.c;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=35b7c1f1d7ed57f46e68f293e70a08223833c6a6;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git 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 35b7c1f1..00000000 --- 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 . - - 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);