Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
palmer
/
sparse
/
53eacc1fa688f066a5426f44fbc85710677fc172
/
.
/
validation
/
mem2reg
/
loop02-global.c
blob: b627b33d18c3d0feca64f43b4312bc85f4056544 [
file
] [
log
] [
blame
]
int
i
;
int
foo
(
void
)
{
int
j
=
1
;
i
=
6
;
do
{
if
(
i
!=
6
)
i
++;
i
++;
}
while
(
i
!=
j
);
return
j
;
}
/*
* check-name: loop02 global
* check-command: test-linearize -Wno-decl $file
* check-output-ignore
* check-output-excludes: load\\.
*/