Abolish a bunch of Xcode inserted tabs.



git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46566 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/AST/ASTContext.cpp b/AST/ASTContext.cpp
index 8d620d9..96bf45d 100644
--- a/AST/ASTContext.cpp
+++ b/AST/ASTContext.cpp
@@ -1150,7 +1150,7 @@
   } else if (T->isEnumeralType()) {
     S += 'i';
   } else
-	assert(0 && "@encode for type not implemented!");
+    assert(0 && "@encode for type not implemented!");
 }
 
 void ASTContext::getObjCEncodingForTypeQualifier(Decl::ObjCDeclQualifier QT, 
@@ -1579,10 +1579,10 @@
       
     // The use of ellipsis agree...now check the argument types.
     for (unsigned i = 0; i < lproto_nargs; i++)
-	  // C99 6.7.5.3p15: ...and each parameter declared with qualified type
-	  // is taken as having the unqualified version of it's declared type.
+      // C99 6.7.5.3p15: ...and each parameter declared with qualified type
+      // is taken as having the unqualified version of it's declared type.
       if (!typesAreCompatible(lproto->getArgType(i).getUnqualifiedType(), 
-	                          rproto->getArgType(i).getUnqualifiedType()))
+                              rproto->getArgType(i).getUnqualifiedType()))
         return false;
     return true;
   }
@@ -1651,7 +1651,7 @@
     // is an interface, we defer to objcTypesAreCompatible(). 
     if (lcanon->isObjCInterfaceType() || rcanon->isObjCInterfaceType())
       return objcTypesAreCompatible(lcanon, rcanon);
-	  
+      
     // C99 6.7.2.2p4: Each enumerated type shall be compatible with char,
     // a signed integer type, or an unsigned integer type. 
     // FIXME: need to check the size and ensure it's the same.