Sign in
dawn
/
dawn
/
3ddc07a18b8a22570ffe1e93f0a11d036462c192
/
.
/
test
/
tint
/
statements
/
assign
/
phony
/
multiple_side_effects.wgsl.expected.fxc.hlsl
blob: 437a07de80e3c8b2cc1746235e49725c40ef4ca1 [
file
] [
log
] [
blame
]
int
f
(
int
a
,
int
b
,
int
c
)
{
return
((
a
*
b
)
+
c
);
}
[
numthreads
(
1
,
1
,
1
)]
void
main
()
{
int
tint_symbol
=
f
(
1
,
2
,
3
);
int
tint_symbol_1
=
f
(
4
,
5
,
6
);
int
tint_symbol_2
=
f
(
8
,
9
,
10
);
int
tint_symbol_3
=
f
(
7
,
tint_symbol_2
,
11
);
return
;
}