20011008-1.c: New.
* gcc.dg/20011008-1.c: New. * gcc.dg/20011008-2.c: New. From-SVN: r46087
This commit is contained in:
parent
11064ef947
commit
1dde5a4edc
@ -1,3 +1,8 @@
|
||||
2001-10-08 DJ Delorie <dj@redhat.com>
|
||||
|
||||
* gcc.dg/20011008-1.c: New.
|
||||
* gcc.dg/20011008-2.c: New.
|
||||
|
||||
2001-10-08 Neil Booth <neil@daikokuya.demon.co.uk>
|
||||
|
||||
* gcc.dg/cpp/spacing1.c: Update test.
|
||||
|
8
gcc/testsuite/gcc.dg/20011008-1.c
Normal file
8
gcc/testsuite/gcc.dg/20011008-1.c
Normal file
@ -0,0 +1,8 @@
|
||||
/* { dg-do compile } */
|
||||
/* { dg-options "-O0" } */
|
||||
|
||||
struct { int; int q; } a; /* { dg-error "unnamed" } */
|
||||
struct { union {int x;}; int q; } b;
|
||||
struct { struct {int x;}; int q; } c;
|
||||
union { union {int x;}; int q; } d;
|
||||
union { struct {int x;}; int q; } e;
|
20
gcc/testsuite/gcc.dg/20011008-2.c
Normal file
20
gcc/testsuite/gcc.dg/20011008-2.c
Normal file
@ -0,0 +1,20 @@
|
||||
/* { dg-do run } */
|
||||
/* { dg-options "-O0" } */
|
||||
|
||||
struct { union {int x; int y;}; int q; } b;
|
||||
union { struct {int x;}; int q; } e;
|
||||
|
||||
main()
|
||||
{
|
||||
b.y = 10;
|
||||
b.x = 15;
|
||||
if (b.y != 15)
|
||||
abort();
|
||||
|
||||
e.x = 10;
|
||||
e.q = 15;
|
||||
if (e.x != 15)
|
||||
abort();
|
||||
|
||||
exit(0);
|
||||
}
|
Loading…
Reference in New Issue
Block a user