Sign in
dawn
/
tint
/
9943de6813695e831a9e6aa43ae36322e81ae3e6
/
.
/
test
/
expressions
/
binary
/
mod_by_zero
/
by_constant
/
scalar-scalar
/
u32.wgsl.expected.msl
blob: 456e3b9caa3a52fbead4f98f47872fc10192178a [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
uint
const
a
=
1u
;
uint
const
b
=
0u
;
uint
const
r
=
(
a
%
b
);
return
;
}