Sign in
dawn
/
dawn
/
8f1d276a3780e023f44b54385255479b4a7e3be7
/
.
/
test
/
tint
/
statements
/
assign
/
phony
/
multiple_side_effects.wgsl.expected.ir.msl
blob: 50f4c9f9d3078c953eb3b2345a4de362bf67c135 [
file
] [
log
] [
blame
]
#include
<metal_stdlib>
using
namespace
metal
;
int
f
(
int
a
,
int
b
,
int
c
)
{
return
((
a
*
b
)
+
c
);
}
kernel
void
tint_symbol
()
{
int
const
v
=
f
(
1
,
2
,
3
);
int
const
v_1
=
f
(
4
,
5
,
6
);
}