llvm-6502/test/Debugger/funccall.c
Chris Lattner 7452ac7c14 This is not part of the test
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17541 91177308-0d34-0410-b5e6-96231b3b80d8
2004-11-07 00:34:45 +00:00

18 lines
180 B
C

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: exit 0