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