Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
palmer
/
sparse
/
53eacc1fa688f066a5426f44fbc85710677fc172
/
.
/
validation
/
optim
/
canonical-not.c
blob: 9698590fd245925789940257fabdc9388e444842 [
file
] [
log
] [
blame
]
int
canon_not
(
int
a
,
int
b
)
{
return
(
a
&
~
b
)
==
(~
b
&
a
);
}
/*
* check-name: canonical-not
* check-command: test-linearize -Wno-decl $file
*
* check-output-ignore
* check-output-returns: 1
*/