blob: a09c526297b7efa5fb17e29ba2781edf79dce94c [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct S {
float2 field0;
uint field1;
int field2;
};
void main_1() {
S x_35 = {};
S const x_1 = x_35;
S x_2_1 = x_1;
x_2_1.field2 = 30;
S const x_2 = x_2_1;
return;
}
kernel void tint_symbol() {
main_1();
return;
}