update to match change in mainline llvm.

llvm-svn: 44367
This commit is contained in:
Chris Lattner 2007-11-27 18:20:52 +00:00
parent 0ee0b0ab8c
commit 1cfe02c38b
1 changed files with 1 additions and 1 deletions

View File

@ -223,7 +223,7 @@ const llvm::Type *CodeGenTypes::ConvertNewType(QualType T) {
isVarArg = true;
}
return llvm::FunctionType::get(ResultType, ArgTys, isVarArg, 0);
return llvm::FunctionType::get(ResultType, ArgTys, isVarArg);
}
case Type::ObjcInterface: