aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2008-03-19 07:31:52 +0000
committerTed Kremenek <kremenek@apple.com>2008-03-19 07:31:52 +0000
commit0fdf06e5eef80ce56ce6499ba662453919b95af1 (patch)
tree01e7d793e4b64ece7c61f10076272a5b62f8bbb8
parentad0a203130dc5d1fb7231b88767174511424fa98 (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.c14
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);
+ }
}