expressions: make assign_expression() take an op argument
[smatch.git] / validation / backend / loop.c
blob181a00689599d46a6d3c885d2e2271c7e268267e
2 extern int bar (int);
4 extern int foo (int);
6 int foo (int x)
8 int y = 0;
10 while (y < 1000) {
11 y += bar(x);
14 return y;
19 * check-name: Loops
20 * check-command: sparsec -c $file -o tmp.o