forked from OSchip/llvm-project
Remove unused Args parameter from EmitFunctionBody, NFC
llvm-svn: 349001
This commit is contained in:
parent
e9f1edaae1
commit
43071080cd
|
@ -1202,8 +1202,7 @@ void CodeGenFunction::StartFunction(GlobalDecl GD,
|
|||
LargestVectorWidth = VecWidth->getVectorWidth();
|
||||
}
|
||||
|
||||
void CodeGenFunction::EmitFunctionBody(FunctionArgList &Args,
|
||||
const Stmt *Body) {
|
||||
void CodeGenFunction::EmitFunctionBody(const Stmt *Body) {
|
||||
incrementProfileCounter(Body);
|
||||
if (const CompoundStmt *S = dyn_cast<CompoundStmt>(Body))
|
||||
EmitCompoundStmtWithoutScope(*S);
|
||||
|
@ -1371,7 +1370,7 @@ void CodeGenFunction::GenerateCode(GlobalDecl GD, llvm::Function *Fn,
|
|||
// copy-constructors.
|
||||
emitImplicitAssignmentOperatorBody(Args);
|
||||
} else if (Body) {
|
||||
EmitFunctionBody(Args, Body);
|
||||
EmitFunctionBody(Body);
|
||||
} else
|
||||
llvm_unreachable("no definition for emitted function");
|
||||
|
||||
|
|
|
@ -1827,7 +1827,7 @@ public:
|
|||
void EmitConstructorBody(FunctionArgList &Args);
|
||||
void EmitDestructorBody(FunctionArgList &Args);
|
||||
void emitImplicitAssignmentOperatorBody(FunctionArgList &Args);
|
||||
void EmitFunctionBody(FunctionArgList &Args, const Stmt *Body);
|
||||
void EmitFunctionBody(const Stmt *Body);
|
||||
void EmitBlockWithFallThrough(llvm::BasicBlock *BB, const Stmt *S);
|
||||
|
||||
void EmitForwardingCallToLambda(const CXXMethodDecl *LambdaCallOperator,
|
||||
|
|
Loading…
Reference in New Issue