Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
palmer
/
sparse
/
53eacc1fa688f066a5426f44fbc85710677fc172
/
.
/
validation
/
optim
/
and-or-mask.c
blob: 46803789551be7067e3cdeac42992d9362e2f1e4 [
file
] [
log
] [
blame
]
int
foo
(
int
a
,
int
b
)
{
return
((
a
&
7
)
|
(
b
&
3
))
&
8
;
}
/*
* check-name: and-or-mask
* check-command: test-linearize -Wno-decl $file
*
* check-output-start
foo:
.L0:
<entry-point>
ret.32 $0
* check-output-end
*/