blob: de09a40e08b34230ae9d088bd9c144cebb4db48b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/* { dg-do link } */
/* { dg-options "-O2" } */
struct X { double m; int x; };
struct Y { int y; short d; };
struct YY { int y; short d; char c; };
extern void link_error (void);
int foo(struct X *x, struct Y *y)
{
x->x = 0;
y->y = 1;
if (x->x != 0)
link_error ();
}
int foo_no(struct X *x, struct YY *y)
{
x->x = 0;
y->y = 1;
if (x->x != 0)
link_error ();
}
int main() {}
|