]> granicus.if.org Git - clang/commitdiff
Convert tabs to spaces.
authorTed Kremenek <kremenek@apple.com>
Tue, 17 Feb 2009 19:53:58 +0000 (19:53 +0000)
committerTed Kremenek <kremenek@apple.com>
Tue, 17 Feb 2009 19:53:58 +0000 (19:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64799 91177308-0d34-0410-b5e6-96231b3b80d8

test/Analysis/conditional-op-missing-lhs.c

index 8befc39854ffd5a7ee0b070721806c33ebbef911..4854c28c7d91ca0ee0b57c683e3eec899e6183df 100644 (file)
@@ -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];
 }