[cfe-commits] r48539 - /cfe/trunk/test/Analysis/dead-stores.c
    Ted Kremenek 
    kremenek at apple.com
       
    Wed Mar 19 00:31:53 PDT 2008
    
    
  
Author: kremenek
Date: Wed Mar 19 02:31:52 2008
New Revision: 48539
URL: http://llvm.org/viewvc/llvm-project?rev=48539&view=rev
Log:
Convert tabs to spaces.
Modified:
    cfe/trunk/test/Analysis/dead-stores.c
Modified: cfe/trunk/test/Analysis/dead-stores.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Analysis/dead-stores.c?rev=48539&r1=48538&r2=48539&view=diff
==============================================================================
--- cfe/trunk/test/Analysis/dead-stores.c (original)
+++ cfe/trunk/test/Analysis/dead-stores.c Wed Mar 19 02:31:52 2008
@@ -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 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);
+  }
 }
    
    
More information about the cfe-commits
mailing list