[cfe-commits] r61097 - in /cfe/trunk: include/clang/AST/ASTContext.h include/clang/AST/Decl.h include/clang/AST/DeclCXX.h include/clang/Parse/Scope.h lib/AST/DeclCXX.cpp lib/CodeGen/CGObjCRuntime.h lib/CodeGen/CGValue.h
Nate Begeman
natebegeman at mac.com
Tue Dec 16 11:57:12 PST 2008
Author: sampo
Date: Tue Dec 16 13:57:09 2008
New Revision: 61097
URL: http://llvm.org/viewvc/llvm-project?rev=61097&view=rev
Log:
Remove tabs.
Modified:
cfe/trunk/include/clang/AST/ASTContext.h
cfe/trunk/include/clang/AST/Decl.h
cfe/trunk/include/clang/AST/DeclCXX.h
cfe/trunk/include/clang/Parse/Scope.h
cfe/trunk/lib/AST/DeclCXX.cpp
cfe/trunk/lib/CodeGen/CGObjCRuntime.h
cfe/trunk/lib/CodeGen/CGValue.h
Modified: cfe/trunk/include/clang/AST/ASTContext.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/ASTContext.h?rev=61097&r1=61096&r2=61097&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/ASTContext.h (original)
+++ cfe/trunk/include/clang/AST/ASTContext.h Tue Dec 16 13:57:09 2008
@@ -191,8 +191,8 @@
/// type. FIXME: We will need these to be uniqued, or at least
/// comparable, at some point.
QualType getDependentSizedArrayType(QualType EltTy, Expr *NumElts,
- ArrayType::ArraySizeModifier ASM,
- unsigned EltTypeQuals);
+ ArrayType::ArraySizeModifier ASM,
+ unsigned EltTypeQuals);
/// getIncompleteArrayType - Returns a unique reference to the type for a
/// incomplete array of the specified element type.
Modified: cfe/trunk/include/clang/AST/Decl.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/Decl.h?rev=61097&r1=61096&r2=61097&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/Decl.h (original)
+++ cfe/trunk/include/clang/AST/Decl.h Tue Dec 16 13:57:09 2008
@@ -1212,5 +1212,5 @@
};
} // end namespace clang
-
+
#endif
Modified: cfe/trunk/include/clang/AST/DeclCXX.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/DeclCXX.h?rev=61097&r1=61096&r2=61097&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/DeclCXX.h (original)
+++ cfe/trunk/include/clang/AST/DeclCXX.h Tue Dec 16 13:57:09 2008
@@ -35,13 +35,13 @@
bool Typename : 1;
TemplateTypeParmDecl(DeclContext *DC, SourceLocation L,
- IdentifierInfo *Id, bool Typename)
+ IdentifierInfo *Id, bool Typename)
: TypeDecl(TemplateTypeParm, DC, L, Id, 0), Typename(Typename) { }
public:
static TemplateTypeParmDecl *Create(ASTContext &C, DeclContext *DC,
- SourceLocation L, IdentifierInfo *Id,
- bool Typename);
+ SourceLocation L, IdentifierInfo *Id,
+ bool Typename);
/// wasDeclarationWithTypename - Whether this template type
/// parameter was declared with the 'typename' keyword. If not, it
@@ -71,14 +71,14 @@
/// @endcode
class NonTypeTemplateParmDecl : public VarDecl {
NonTypeTemplateParmDecl(DeclContext *DC, SourceLocation L,
- IdentifierInfo *Id, QualType T,
- SourceLocation TSSL = SourceLocation())
+ IdentifierInfo *Id, QualType T,
+ SourceLocation TSSL = SourceLocation())
: VarDecl(NonTypeTemplateParm, DC, L, Id, T, VarDecl::None, 0, TSSL) { }
-
+
public:
static NonTypeTemplateParmDecl *
Create(ASTContext &C, DeclContext *DC, SourceLocation L, IdentifierInfo *Id,
- QualType T, SourceLocation TypeSpecStartLoc = SourceLocation());
+ QualType T, SourceLocation TypeSpecStartLoc = SourceLocation());
// Implement isa/cast/dyncast/etc.
static bool classof(const Decl *D) {
Modified: cfe/trunk/include/clang/Parse/Scope.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Parse/Scope.h?rev=61097&r1=61096&r2=61097&view=diff
==============================================================================
--- cfe/trunk/include/clang/Parse/Scope.h (original)
+++ cfe/trunk/include/clang/Parse/Scope.h Tue Dec 16 13:57:09 2008
@@ -248,11 +248,11 @@
}
// If this scope is a function or contains breaks/continues, remember it.
- if (Flags & FnScope) FnParent = this;
- if (Flags & BreakScope) BreakParent = this;
- if (Flags & ContinueScope) ContinueParent = this;
+ if (Flags & FnScope) FnParent = this;
+ if (Flags & BreakScope) BreakParent = this;
+ if (Flags & ContinueScope) ContinueParent = this;
if (Flags & ControlScope) ControlParent = this;
- if (Flags & BlockScope) BlockParent = this;
+ if (Flags & BlockScope) BlockParent = this;
if (Flags & TemplateParamScope) TemplateParamParent = this;
DeclsInScope.clear();
Entity = 0;
Modified: cfe/trunk/lib/AST/DeclCXX.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/DeclCXX.cpp?rev=61097&r1=61096&r2=61097&view=diff
==============================================================================
--- cfe/trunk/lib/AST/DeclCXX.cpp (original)
+++ cfe/trunk/lib/AST/DeclCXX.cpp Tue Dec 16 13:57:09 2008
@@ -22,16 +22,16 @@
TemplateTypeParmDecl *
TemplateTypeParmDecl::Create(ASTContext &C, DeclContext *DC,
- SourceLocation L, IdentifierInfo *Id,
- bool Typename) {
+ SourceLocation L, IdentifierInfo *Id,
+ bool Typename) {
void *Mem = C.getAllocator().Allocate<TemplateTypeParmDecl>();
return new (Mem) TemplateTypeParmDecl(DC, L, Id, Typename);
}
NonTypeTemplateParmDecl *
NonTypeTemplateParmDecl::Create(ASTContext &C, DeclContext *DC,
- SourceLocation L, IdentifierInfo *Id,
- QualType T, SourceLocation TypeSpecStartLoc) {
+ SourceLocation L, IdentifierInfo *Id,
+ QualType T, SourceLocation TypeSpecStartLoc) {
void *Mem = C.getAllocator().Allocate<NonTypeTemplateParmDecl>();
return new (Mem) NonTypeTemplateParmDecl(DC, L, Id, T, TypeSpecStartLoc);
}
Modified: cfe/trunk/lib/CodeGen/CGObjCRuntime.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGObjCRuntime.h?rev=61097&r1=61096&r2=61097&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGObjCRuntime.h (original)
+++ cfe/trunk/lib/CodeGen/CGObjCRuntime.h Tue Dec 16 13:57:09 2008
@@ -144,7 +144,7 @@
virtual void EmitThrowStmt(CodeGen::CodeGenFunction &CGF,
const ObjCAtThrowStmt &S) = 0;
virtual llvm::Value * EmitObjCWeakRead(CodeGen::CodeGenFunction &CGF,
- llvm::Value *AddrWeakObj) = 0;
+ llvm::Value *AddrWeakObj) = 0;
virtual void EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF,
llvm::Value *src, llvm::Value *dest) = 0;
virtual void EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF,
Modified: cfe/trunk/lib/CodeGen/CGValue.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CGValue.h?rev=61097&r1=61096&r2=61097&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CGValue.h (original)
+++ cfe/trunk/lib/CodeGen/CGValue.h Tue Dec 16 13:57:09 2008
@@ -111,9 +111,9 @@
} LVType;
enum ObjCType {
- None = 0, // object with no gc attribute.
- Weak, // __weak object expression
- Strong // __strong object expression
+ None = 0, // object with no gc attribute.
+ Weak, // __weak object expression
+ Strong // __strong object expression
};
llvm::Value *V;
More information about the cfe-commits
mailing list