summaryrefslogtreecommitdiff
path: root/test/Debugger/funccall.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Debugger/funccall.c')
-rw-r--r--test/Debugger/funccall.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/Debugger/funccall.c b/test/Debugger/funccall.c
index b99a8851d3..4d016ecd01 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