Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr113210.c
blob: 0aa07803a7eecce26290b6523a7d21a3adfe1eaf [
file
] [
log
] [
blame
]
/* PR tree-optimization/113210 */
unsigned
char
a
,
c
;
unsigned
short
b
;
void
foo
(
void
)
{
c
=
a
+
255
;
b
=
c
;
while
(++
b
>
256
)
;
}