Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr98117.c
blob: f2160257263b86f34b965bfdc83049a7161c7a6b [
file
] [
log
] [
blame
]
/* { dg-do run } */
/* { dg-additional-options "-fno-tree-scev-cprop" } */
unsigned
char
c
;
void
__attribute__
((
noipa
))
e
()
{
do
{
}
while
(++
c
);
}
int
main
()
{
e
();
if
(
c
!=
0
)
__builtin_abort
();
return
0
;
}