eli correctly points out that this code is dead, just rip it out for

now until someone does it right

llvm-svn: 71638
This commit is contained in:
Chris Lattner 2009-05-13 04:52:12 +00:00
parent afde259240
commit 5868c03191
1 changed files with 0 additions and 7 deletions

View File

@ -2076,13 +2076,6 @@ Sema::ActOnFunctionDeclarator(Scope* S, Declarator& D, DeclContext* DC,
}
// This is a C++ method declaration.
// FIXME: All inline method declarations are semantically inline. We
// should add a new bit to keep track of whether they were declared with an
// inline keyword as well.
if (CurContext == DC && IsFunctionDefinition)
isInline = true;
NewFD = CXXMethodDecl::Create(Context, cast<CXXRecordDecl>(DC),
D.getIdentifierLoc(), Name, R,
(SC == FunctionDecl::Static), isInline);