Fix "no newline at end of file" warnings. Patch contributed by

Benoit Boissinot!

llvm-svn: 39780
This commit is contained in:
Chris Lattner
2007-07-12 15:43:07 +00:00
parent 20c4ff2845
commit bd4de5df77
3 changed files with 3 additions and 3 deletions

View File

@@ -158,4 +158,4 @@ FieldDecl* RecordDecl::getMember(IdentifierInfo *name) {
return Members[i];
}
return 0;
}
}

View File

@@ -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);
}
}

View File

@@ -153,4 +153,4 @@ public:
} // end namespace clang
#endif
#endif