blob: 9f5363e2d953e3cac58a000f82f2d15ac7132eeb [file] [log] [blame]
struct S {
float4 a;
int b;
};
ByteAddressBuffer sb : register(t0);
S v(uint offset) {
float4 v_1 = asfloat(sb.Load4((offset + 0u)));
S v_2 = {v_1, asint(sb.Load((offset + 16u)))};
return v_2;
}
void main_1() {
S x_18 = v(32u);
}
[numthreads(1, 1, 1)]
void main() {
main_1();
}