From: Ted Kremenek Date: Tue, 17 Feb 2009 19:53:58 +0000 (+0000) Subject: Convert tabs to spaces. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=16de4c716290a198054bf67c93f3a266d269b2d1;p=clang Convert tabs to spaces. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64799 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Analysis/conditional-op-missing-lhs.c b/test/Analysis/conditional-op-missing-lhs.c index 8befc39854..4854c28c7d 100644 --- a/test/Analysis/conditional-op-missing-lhs.c +++ b/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]; }