Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
090516fe932ad4ed14b72ea27017aeb4a15cb15c
/
.
/
llvm
/
test
/
Regression
/
Debugger
/
funccall.c
blob: cc363858ac8c367e476dd35baecf18a80139e807 [
file
] [
log
] [
blame
]
static
int
q
;
void
foo
()
{
int
t
=
q
;
q
=
t
+
1
;
}
int
main
()
{
q
=
0
;
foo
();
q
=
q
-
1
;
return
q
;
}