Sign in
kernel
/
pub
/
scm
/
devel
/
sparse
/
sparse-dev
/
refs/heads/fix-zephyr
/
.
/
validation
/
infinite-loop04.c
blob: 77865095f3a5ed86161559dd5f0b47518da9e6a3 [
file
] [
log
] [
blame
]
extern
void
use
(
char
);
static
void
foo
(
char
*
b
)
{
while
(
b
)
{
if
(
b
++)
continue
;
++
b
;
use
(*
b
);
&
b
;
}
}
/*
* check-name: internal infinite loop (4)
* check-command: sparse $file
* check-timeout:
*/