Sign in
dawn
/
tint
/
refs/heads/chromium/4857
/
.
/
test
/
expressions
/
binary
/
div_by_zero
/
by_identifier
/
scalar-scalar
/
u32.wgsl.expected.msl
blob: bf7517d8e74aedca2f116f82ca55b9f270de8bd4 [
file
] [
log
] [
blame
] [
edit
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
uint
a
=
1u
;
uint
b
=
0u
;
uint
const
r
=
(
a
/
b
);
return
;
}