diff options
author | Chris Lattner <sabre@nondot.org> | 2007-07-12 15:43:07 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-07-12 15:43:07 +0000 |
commit | bd4de5df772da7a850164e4d5c6045e277682c52 (patch) | |
tree | ae5f95cf25c7329190619087c2921bfd84926761 | |
parent | 20c4ff28453d367f09e2a4f428b64a5173223cc3 (diff) | |
download | bcm5719-llvm-bd4de5df772da7a850164e4d5c6045e277682c52.tar.gz bcm5719-llvm-bd4de5df772da7a850164e4d5c6045e277682c52.zip |
Fix "no newline at end of file" warnings. Patch contributed by
Benoit Boissinot!
llvm-svn: 39780
-rw-r--r-- | clang/AST/Decl.cpp | 2 | ||||
-rw-r--r-- | clang/CodeGen/CGStmt.cpp | 2 | ||||
-rw-r--r-- | clang/include/clang/Lex/LiteralSupport.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/clang/AST/Decl.cpp b/clang/AST/Decl.cpp index 22fbabbd30c..f4a346ff972 100644 --- a/clang/AST/Decl.cpp +++ b/clang/AST/Decl.cpp @@ -158,4 +158,4 @@ FieldDecl* RecordDecl::getMember(IdentifierInfo *name) { return Members[i]; } return 0; -}
\ No newline at end of file +} diff --git a/clang/CodeGen/CGStmt.cpp b/clang/CodeGen/CGStmt.cpp index fb2f7841f28..193acb716a8 100644 --- a/clang/CodeGen/CGStmt.cpp +++ b/clang/CodeGen/CGStmt.cpp @@ -281,4 +281,4 @@ void CodeGenFunction::EmitReturnStmt(const ReturnStmt &S) { void CodeGenFunction::EmitDeclStmt(const DeclStmt &S) { for (const Decl *Decl = S.getDecl(); Decl; Decl = Decl->getNextDeclarator()) EmitDecl(*Decl); -}
\ No newline at end of file +} diff --git a/clang/include/clang/Lex/LiteralSupport.h b/clang/include/clang/Lex/LiteralSupport.h index adeac18af88..f114dbbb78f 100644 --- a/clang/include/clang/Lex/LiteralSupport.h +++ b/clang/include/clang/Lex/LiteralSupport.h @@ -153,4 +153,4 @@ public: } // end namespace clang -#endif
\ No newline at end of file +#endif |