blob: 320e62ac33b8337c27247d0db2d041908e3b056c [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
float b(int i) {
return 2.29999995231628417969f;
}
int c(uint u) {
return 1;
}
[[max_total_threads_per_threadgroup(1)]]
kernel void a() {
float a_1 = b(c(2u));
}