blob: b99a8851d315b78fede44c098349e4abe92f44bb [file] [log] [blame]
Chris Lattner94276b62004-01-05 05:32:40 +00001
2static int q;
3
4void foo() {
5 int t = q;
6 q = t + 1;
7}
8int main() {
9 q = 0;
10 foo();
11 q = q - 1;
12
13 return q;
14}
Chris Lattner7452ac72004-11-07 00:34:45 +000015
16// This is the source that corresponds to funccall.ll
17// RUN: exit 0