blob: a965f5e9ea040bbe57c0c50b71fd26520b9a7837 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
void c(int x, int y, int z) {
int a = (((1 + x) + y) + z);
a = (a + 2);
}
void b() {
c(1, 2, 3);
c(4, 5, 6);
}