aboutsummaryrefslogtreecommitdiffstats
path: root/c_parser/test/in/14.c
blob: 94506d7d94aa303c0a657cc252025a855319956c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
int function_1(int a, int b) {
    int x = 0;

    do {
	int c = a + b;
	x += a;
	x = x * b;
	x -= c;
    } while(x < 500);

    return x;
}