Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr59413.c
blob: d7a2084ed63c01af6968adf8d701e058ad3c15af [
file
] [
log
] [
blame
]
/* PR tree-optimization/59413 */
typedef
unsigned
int
uint32_t
;
uint32_t
a
;
int
b
;
int
main
()
{
uint32_t
c
;
for
(
a
=
7
;
a
<=
1
;
a
++)
{
char
d
=
a
;
c
=
d
;
b
=
a
==
c
;
}
if
(
a
!=
7
)
__builtin_abort
();
return
0
;
}