* gcc.c-torture/compile/20010113-1.c: New test.

From-SVN: r38997
This commit is contained in:
Joseph Myers 2001-01-13 23:27:06 +00:00 committed by Joseph Myers
parent 9e2adb2a1c
commit 6f6684e699
2 changed files with 19 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2001-01-13 Joseph S. Myers <jsm28@cam.ac.uk>
* gcc.c-torture/compile/20010113-1.c: New test.
2001-01-13 Jakub Jelinek <jakub@redhat.com>
* gcc.c-torture/compile/20001212-1.c: New test.

View File

@ -0,0 +1,15 @@
/* 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);