Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
palmer
/
sparse
/
f0e6938bffe0e21cde6e60ff63ed8877d4d04e26
/
.
/
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
*/