2021-05-18 10:28:48 +00:00
|
|
|
#include <metal_stdlib>
|
|
|
|
|
|
|
|
using namespace metal;
|
2021-06-17 09:10:04 +00:00
|
|
|
void main_1() {
|
2021-05-18 10:28:48 +00:00
|
|
|
int i = 0;
|
|
|
|
i = 123;
|
|
|
|
int const x_10 = i;
|
2021-07-30 18:59:06 +00:00
|
|
|
int const x_12 = as_type<int>((as_type<uint>(x_10) + as_type<uint>(1)));
|
2021-05-18 10:28:48 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-06-17 09:10:04 +00:00
|
|
|
kernel void tint_symbol() {
|
|
|
|
main_1();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|