2021-07-30 16:03:06 +00:00
|
|
|
static int x_1[1] = (int[1])0;
|
|
|
|
|
|
|
|
void main_1() {
|
|
|
|
x_1[0] = 12;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct main_out {
|
|
|
|
uint x_1_1;
|
|
|
|
};
|
|
|
|
struct tint_symbol {
|
|
|
|
uint x_1_1 : SV_Coverage;
|
|
|
|
};
|
|
|
|
|
2021-08-04 22:15:28 +00:00
|
|
|
main_out main_inner() {
|
2021-07-30 16:03:06 +00:00
|
|
|
main_1();
|
|
|
|
const main_out tint_symbol_1 = {asuint(x_1[0])};
|
2021-08-04 22:15:28 +00:00
|
|
|
return tint_symbol_1;
|
|
|
|
}
|
|
|
|
|
|
|
|
tint_symbol main() {
|
|
|
|
const main_out inner_result = main_inner();
|
|
|
|
tint_symbol wrapper_result = (tint_symbol)0;
|
|
|
|
wrapper_result.x_1_1 = inner_result.x_1_1;
|
|
|
|
return wrapper_result;
|
2021-07-30 16:03:06 +00:00
|
|
|
}
|