Sign in
kernel
/
pub
/
scm
/
devel
/
sparse
/
sparse-dev
/
refs/heads/fix-zephyr
/
.
/
validation
/
optim
/
select-self-zero.c
blob: 73b3a3dc7e2917afc33cdbc94659b01f08b0d479 [
file
] [
log
] [
blame
]
int
sel_self0x
(
int
x
)
{
return
(
x
?
0
:
x
)
==
0
;
}
int
sel_selfx0
(
int
x
)
{
return
(
x
?
x
:
0
)
==
x
;
}
/*
* check-name: select-self-zero
* check-command: test-linearize -Wno-decl $file
*
* check-output-ignore
* check-output-returns: 1
*/