Sign in
gnu
/
gcc
/
d769c5040874bf9546f2524f3f1d2a894165f92a
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20100827-1.c
blob: 8a531b99bb19dc40e9ea88d34903df4ae1b9d8f5 [
file
] [
log
] [
blame
]
extern
void
abort
(
void
);
int
__attribute__
((
noinline
,
noclone
))
foo
(
char
*
p
)
{
int
h
=
0
;
do
{
if
(*
p
==
'\0'
)
break
;
++
h
;
if
(
p
==
0
)
abort
();
++
p
;
}
while
(
1
);
return
h
;
}
int
main
()
{
if
(
foo
(
"a"
)
!=
1
)
abort
();
return
0
;
}