blob: 47e245e2470c2baf2070de45b850c982542658e5 (
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
27
28
29
30
31
32
33
34
35
36
37
|
/* PR 24255 */
/* { dg-do run } */
/* { dg-options "-O" } */
extern void abort (void);
union wait { int w_status; };
typedef union
{
union wait *uptr;
int *iptr;
} WAIT_STATUS __attribute__ ((__transparent_union__));
int status;
union wait wstatus;
void __attribute__((noinline))
test1 (WAIT_STATUS s)
{
if (s.iptr != &status)
abort ();
}
void __attribute__((noinline))
test2 (WAIT_STATUS s)
{
if (s.uptr != &wstatus)
abort ();
}
int main()
{
test1 (&status);
test2 (&wstatus);
return 0;
}
|