You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
188 B

static int q;
void foo() {
int t = q;
q = t + 1;
}
int main() {
q = 0;
foo();
q = q - 1;
return q;
}
// This is the source that corresponds to funccall.ll
// RUN: echo foo