2021-05-27 14:15:47 +00:00
|
|
|
#include <metal_stdlib>
|
|
|
|
|
|
|
|
using namespace metal;
|
|
|
|
struct S {
|
|
|
|
int i;
|
|
|
|
};
|
|
|
|
|
2021-06-17 09:10:04 +00:00
|
|
|
void main_1(thread S* const tint_symbol_1) {
|
2021-05-27 14:15:47 +00:00
|
|
|
int i = 0;
|
2021-06-17 09:10:04 +00:00
|
|
|
int const x_15 = (*(tint_symbol_1)).i;
|
2021-05-27 14:15:47 +00:00
|
|
|
i = x_15;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-06-17 09:10:04 +00:00
|
|
|
kernel void tint_symbol() {
|
|
|
|
thread S tint_symbol_2 = {};
|
|
|
|
main_1(&(tint_symbol_2));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|