Sign in
dawn
/
dawn
/
8124737f1dd32ca150b26c520e978f18369be16d
/
.
/
test
/
tint
/
ptr_sugar
/
struct.wgsl.expected.ir.dxc.hlsl
blob: daded686958d915d74a50f32d3e6795df0c36711 [
file
] [
log
] [
blame
]
struct
S
{
int
x
;
};
void
deref
()
{
S a
=
(
S
)
0
;
S p
=
a
;
int
b
=
p
.
x
;
p
.
x
=
42
;
}
void
no_deref
()
{
S a
=
(
S
)
0
;
S p
=
a
;
int
b
=
p
.
x
;
p
.
x
=
42
;
}
[
numthreads
(
1
,
1
,
1
)]
void
main
()
{
deref
();
no_deref
();
}