blob: 10a05b217f6f41d2e67d1db7b19ca3049ecb550b [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
void select_2c96d4() {
bool3 arg_2 = bool3(true);
float3 res = select(float3(1.0f), float3(1.0f), arg_2);
}
vertex float4 vertex_main() {
select_2c96d4();
return float4(0.0f);
}
fragment void fragment_main() {
select_2c96d4();
}
kernel void compute_main() {
select_2c96d4();
}