summaryrefslogtreecommitdiff
path: root/tests/params.c
blob: 20730006c563a7f7c8b39925ee9111eba6488b7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
int square(int x) {
    int res;
    res = x * x;
    return res;
}
int div(int a, int b) {
    int aa = -a;
    int bb = 1 * b;
    return aa / bb;
}
int main() {
    int x;
    x = square(9);// 81
    e:goto e;
    x = div(-150, 10);// 15
    ef:goto ef;
    return x;
}