Sign in
dawn
/
dawn
/
2320e63eb964badefc9166be1c07d0a516b87e63
/
.
/
test
/
tint
/
expressions
/
binary
/
right-shift
/
scalar-scalar
/
i32.wgsl.expected.msl
blob: 1f3190c23d7bec8ff907e18c40c120bccce15cba [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
int
const
a
=
1
;
uint
const
b
=
2u
;
int
const
r
=
(
a
>>
(
b
&
31u
));
return
;
}