diff options
Diffstat (limited to 'test/Debugger')
-rw-r--r-- | test/Debugger/funccall.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/Debugger/funccall.c b/test/Debugger/funccall.c index b99a885..4d016ec 100644 --- a/test/Debugger/funccall.c +++ b/test/Debugger/funccall.c @@ -2,15 +2,15 @@ static int q; void foo() { - int t = q; - q = t + 1; + int t = q; + q = t + 1; } int main() { - q = 0; - foo(); - q = q - 1; + q = 0; + foo(); + q = q - 1; - return q; + return q; } // This is the source that corresponds to funccall.ll |