Sign in
dawn
/
dawn
/
a561b989290824819e6fa9fbea0728a31fd45361
/
.
/
test
/
tint
/
expressions
/
binary
/
mul
/
scalar-scalar
/
i32.wgsl.expected.ir.msl
blob: 24f928edf81aa257d46ef97993e4b4122851c192 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
kernel
void
f
()
{
int
const
a
=
1
;
int
const
b
=
2
;
int
const
r
=
as_type
<int>
((
as_type
<uint>
(
a
)
*
as_type
<uint>
(
b
)));
}