Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr73434.c
blob: 624e0c6ccfb4c31bd3379e6e58463b64d6261be0 [
file
] [
log
] [
blame
]
/* { dg-do run } */
typedef
struct
{
unsigned
char
x
;
}
A
;
typedef
struct
{
unsigned
char
x
;
}
B
;
int
idx
=
0
;
A objs
[
1
]
=
{{
0
}};
int
main
()
{
B
*
b
=
(
B
*)&
objs
[
idx
];
b
->
x
++;
if
(
b
->
x
)
b
->
x
=
0
;
if
(
b
->
x
)
__builtin_abort
();
return
0
;
}