forked from OSchip/llvm-project
Err, unbreak my previous "no functionality change commit", will fix properly later.
llvm-svn: 63467
This commit is contained in:
parent
3cd20632ff
commit
a37249c663
clang/lib/CodeGen
|
@ -1284,7 +1284,7 @@ RValue CodeGenFunction::EmitCall(llvm::Value *Callee,
|
|||
}
|
||||
|
||||
llvm::CallInst *CI = Builder.CreateCall(Callee,&Args[0],&Args[0]+Args.size());
|
||||
bool isVariadic = cast<llvm::FunctionType>(Callee->getType())->isVarArg();
|
||||
bool isVariadic = false; // cast<llvm::FunctionType>(Callee->getType())->isVarArg();
|
||||
CGFunctionInfo CallInfo(RetTy, CallArgs, isVariadic);
|
||||
|
||||
// FIXME: Provide TargetDecl so nounwind, noreturn, etc, etc get set.
|
||||
|
|
Loading…
Reference in New Issue