diff options
author | Jeff Cohen <jeffc@jolt-lang.org> | 2005-04-23 21:26:11 +0000 |
---|---|---|
committer | Jeff Cohen <jeffc@jolt-lang.org> | 2005-04-23 21:26:11 +0000 |
commit | 8047f13a888189189f1efde5509462b80a967bd1 (patch) | |
tree | 17dc0d36ea93930a67bfc7915a184b7ebb6c0ff6 /llvm/test/Regression/Debugger/funccall.c | |
parent | 4bbf66b7a27e5ed5c3bb563cd1d0dd28ca6201c2 (diff) | |
download | bcm5719-llvm-8047f13a888189189f1efde5509462b80a967bd1.tar.gz bcm5719-llvm-8047f13a888189189f1efde5509462b80a967bd1.zip |
Eliminate tabs and trailing spaces
llvm-svn: 21479
Diffstat (limited to 'llvm/test/Regression/Debugger/funccall.c')
-rw-r--r-- | llvm/test/Regression/Debugger/funccall.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/test/Regression/Debugger/funccall.c b/llvm/test/Regression/Debugger/funccall.c index b99a8851d31..4d016ecd017 100644 --- a/llvm/test/Regression/Debugger/funccall.c +++ b/llvm/test/Regression/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 |