summaryrefslogtreecommitdiffstats
path: root/test/Debugger
diff options
context:
space:
mode:
authorJeff Cohen <jeffc@jolt-lang.org>2005-04-23 21:26:11 +0000
committerJeff Cohen <jeffc@jolt-lang.org>2005-04-23 21:26:11 +0000
commitb02fbfc485a68cebeede24810b0cd8f0d97c9e51 (patch)
treec44f886c776fce1bb30ce3e77db96f879cadbe7d /test/Debugger
parentcc1f24585e7d23fd6622c17099159cdc038ee618 (diff)
downloadexternal_llvm-b02fbfc485a68cebeede24810b0cd8f0d97c9e51.zip
external_llvm-b02fbfc485a68cebeede24810b0cd8f0d97c9e51.tar.gz
external_llvm-b02fbfc485a68cebeede24810b0cd8f0d97c9e51.tar.bz2
Eliminate tabs and trailing spaces
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21479 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Debugger')
-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 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