[cfe-commits] r47410 - in /cfe/trunk: CodeGen/CodeGenTypes.cpp Sema/Sema.h

Nate Begeman natebegeman at mac.com
Wed Feb 20 14:57:41 PST 2008


Author: sampo
Date: Wed Feb 20 16:57:40 2008
New Revision: 47410

URL: http://llvm.org/viewvc/llvm-project?rev=47410&view=rev
Log:
Tabs are the enemy

Modified:
    cfe/trunk/CodeGen/CodeGenTypes.cpp
    cfe/trunk/Sema/Sema.h

Modified: cfe/trunk/CodeGen/CodeGenTypes.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/CodeGen/CodeGenTypes.cpp?rev=47410&r1=47409&r2=47410&view=diff

==============================================================================
--- cfe/trunk/CodeGen/CodeGenTypes.cpp (original)
+++ cfe/trunk/CodeGen/CodeGenTypes.cpp Wed Feb 20 16:57:40 2008
@@ -416,7 +416,7 @@
 
 /// addBitFieldInfo - Assign a start bit and a size to field FD.
 void CodeGenTypes::addBitFieldInfo(const FieldDecl *FD, unsigned Begin,
-				   unsigned Size) {
+                                   unsigned Size) {
   BitFields.insert(std::make_pair(FD, BitFieldInfo(Begin, Size)));
 }
 

Modified: cfe/trunk/Sema/Sema.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/Sema/Sema.h?rev=47410&r1=47409&r2=47410&view=diff

==============================================================================
--- cfe/trunk/Sema/Sema.h (original)
+++ cfe/trunk/Sema/Sema.h Wed Feb 20 16:57:40 2008
@@ -195,8 +195,8 @@
   
   virtual DeclTy *ActOnFinishFunctionBody(DeclTy *Decl, StmtTy *Body);
   virtual DeclTy *ActOnLinkageSpec(SourceLocation Loc, SourceLocation LBrace,
-				   SourceLocation RBrace, const char *Lang,
-				   unsigned StrSize, DeclTy *D);
+                                   SourceLocation RBrace, const char *Lang,
+                                   unsigned StrSize, DeclTy *D);
   virtual DeclTy *ActOnFileScopeAsmDecl(SourceLocation Loc, ExprTy *expr);
 
   /// Scope actions.
@@ -532,7 +532,7 @@
   
   // Objective-C declarations.
   virtual DeclTy *ActOnStartClassInterface(
-		    SourceLocation AtInterafceLoc,
+                    SourceLocation AtInterafceLoc,
                     IdentifierInfo *ClassName, SourceLocation ClassLoc,
                     IdentifierInfo *SuperName, SourceLocation SuperLoc,
                     IdentifierInfo **ProtocolNames, unsigned NumProtocols,
@@ -544,20 +544,20 @@
                     IdentifierInfo *ClassName, SourceLocation ClassLocation);
                     
   virtual DeclTy *ActOnStartProtocolInterface(
-		    SourceLocation AtProtoInterfaceLoc,
+                    SourceLocation AtProtoInterfaceLoc,
                     IdentifierInfo *ProtocolName, SourceLocation ProtocolLoc,
                     IdentifierInfo **ProtoRefNames, unsigned NumProtoRefs,
                     SourceLocation EndProtoLoc);
   
   virtual DeclTy *ActOnStartCategoryInterface(
-		    SourceLocation AtInterfaceLoc,
+                    SourceLocation AtInterfaceLoc,
                     IdentifierInfo *ClassName, SourceLocation ClassLoc,
                     IdentifierInfo *CategoryName, SourceLocation CategoryLoc,
                     IdentifierInfo **ProtoRefNames, unsigned NumProtoRefs,
                     SourceLocation EndProtoLoc);
   
   virtual DeclTy *ActOnStartClassImplementation(
-		    SourceLocation AtClassImplLoc,
+                    SourceLocation AtClassImplLoc,
                     IdentifierInfo *ClassName, SourceLocation ClassLoc,
                     IdentifierInfo *SuperClassname, 
                     SourceLocation SuperClassLoc);
@@ -759,7 +759,7 @@
   bool CheckInitExpr(Expr *expr, InitListExpr *IList, unsigned slot,
                      QualType ElementType);
   bool CheckInitializerListTypes(InitListExpr*& IList, QualType &DeclType,
-								 bool topLevel, unsigned& startIndex);
+                                 bool topLevel, unsigned& startIndex);
   bool CheckForConstantInitializer(Expr *e, QualType t);
   
   StringLiteral *IsStringLiteralInit(Expr *Init, QualType DeclType);





More information about the cfe-commits mailing list