Sign in
kernel
/
pub
/
scm
/
devel
/
sparse
/
sparse-dev
/
refs/heads/fix-zephyr
/
.
/
validation
/
backend
/
shift-special.c
blob: 9b68237195d912797ed3429376cefddbd816b122 [
file
] [
log
] [
blame
]
long
shift
(
long
a
,
short
b
);
long
shift
(
long
a
,
short
b
)
{
long
r1
=
a
<<
b
;
long
r2
=
b
<<
a
;
return
r1
+
r2
;
}
/*
* check-name: shift-special
* check-command: sparsec -c $file -o tmp.o
*/