summaryrefslogtreecommitdiffstats
path: root/clang/test
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2009-02-17 19:53:58 +0000
committerTed Kremenek <kremenek@apple.com>2009-02-17 19:53:58 +0000
commit35b13439cc09a310432b6ee0f7a7ac2e51d058de (patch)
treee118dd40bc824df7da4b01f82a31afb70be223d1 /clang/test
parentd97b07e7d443b18bd718700c03db2e079e560def (diff)
downloadbcm5719-llvm-35b13439cc09a310432b6ee0f7a7ac2e51d058de.tar.gz
bcm5719-llvm-35b13439cc09a310432b6ee0f7a7ac2e51d058de.zip
Convert tabs to spaces.
llvm-svn: 64799
Diffstat (limited to 'clang/test')
-rw-r--r--clang/test/Analysis/conditional-op-missing-lhs.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/clang/test/Analysis/conditional-op-missing-lhs.c b/clang/test/Analysis/conditional-op-missing-lhs.c
index 8befc39854f..4854c28c7d9 100644
--- a/clang/test/Analysis/conditional-op-missing-lhs.c
+++ b/clang/test/Analysis/conditional-op-missing-lhs.c
@@ -2,25 +2,25 @@
void f1()
{
- int i;
-
- int j = i ? : 1; // expected-warning{{use of uninitialized variable}} //expected-warning{{Value stored to 'j' during its initialization is never read}}
+ int i;
+
+ int j = i ? : 1; // expected-warning{{use of uninitialized variable}} //expected-warning{{Value stored to 'j' during its initialization is never read}}
}
void *f2(int *i)
{
- return i ? : 0;
+ return i ? : 0;
}
void *f3(int *i)
{
- int a;
-
- return &a ? : i;
+ int a;
+
+ return &a ? : i;
}
void f4()
{
- char c[1 ? : 2];
+ char c[1 ? : 2];
}
OpenPOWER on IntegriCloud