diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-03-19 07:31:52 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-03-19 07:31:52 +0000 |
commit | 0fdf06e5eef80ce56ce6499ba662453919b95af1 (patch) | |
tree | 01e7d793e4b64ece7c61f10076272a5b62f8bbb8 | |
parent | ad0a203130dc5d1fb7231b88767174511424fa98 (diff) |
Convert tabs to spaces.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@48539 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Analysis/dead-stores.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test/Analysis/dead-stores.c b/test/Analysis/dead-stores.c index 54e89ea5c3..08507553f9 100644 --- a/test/Analysis/dead-stores.c +++ b/test/Analysis/dead-stores.c @@ -2,8 +2,8 @@ void x() { int k, y; - int abc=1; - long idx=abc+3*5; // expected-warning {{value stored to variable is never used}} + int abc=1; + long idx=abc+3*5; // expected-warning {{value stored to variable is never used}} } void a(void *b) { @@ -13,9 +13,9 @@ void a(void *b) { } void z() { - int r; - if ((r = f()) != 0) { // no-warning - int y = r; // no-warning - printf("the error is: %d\n", y); - } + int r; + if ((r = f()) != 0) { // no-warning + int y = r; // no-warning + printf("the error is: %d\n", y); + } } |