Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
palmer
/
sparse
/
f0e6938bffe0e21cde6e60ff63ed8877d4d04e26
/
.
/
validation
/
optim
/
cse-fcmp.c
blob: f2a73f57fc1d8d0a412be9d2b9e8ba948ae75e2c [
file
] [
log
] [
blame
]
extern
void
fun
(
void
);
int
foo
(
double
a
,
double
b
)
{
if
(
a
<
b
)
fun
();
if
(
a
<
b
)
return
1
;
return
0
;
}
/*
* check-name: cse-fcmp
* check-command: test-linearize -Wno-decl $file
*
* check-output-ignore
* check-output-pattern(1): fcmp
*/