mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-21 14:29:55 +08:00
New test.
From-SVN: r47589
This commit is contained in:
parent
87d4ad0804
commit
0d204c2d41
22
gcc/testsuite/gcc.dg/struct-alias-1.c
Normal file
22
gcc/testsuite/gcc.dg/struct-alias-1.c
Normal file
@ -0,0 +1,22 @@
|
||||
/* { dg-do link } */
|
||||
/* { dg-options "-O2" } */
|
||||
|
||||
struct S {
|
||||
int a[3];
|
||||
int x;
|
||||
};
|
||||
|
||||
extern void link_error(void);
|
||||
static int i;
|
||||
|
||||
int main()
|
||||
{
|
||||
struct S s;
|
||||
|
||||
s.x = 0;
|
||||
s.a[i] = 1;
|
||||
if (s.x != 0)
|
||||
link_error ();
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user