Lines Matching defs:FTy
240 FunctionType *inlinableVariadicFunctionType(Module &M, FunctionType *FTy) {
241 // The type of "FTy" with the ... removed and a va_list appended
242 SmallVector<Type *> ArgTypes(FTy->params());
244 return FunctionType::get(FTy->getReturnType(), ArgTypes,
408 FunctionType *FTy = CB->getFunctionType();
409 if (FTy->isVarArg())
410 Changed |= expandCall(M, Builder, CB, FTy, 0);
507 FunctionType *FTy = F.getFunctionType();
508 Function *NF = Function::Create(FTy, F.getLinkage(), F.getAddressSpace());
517 Attrs = Attrs.addParamAttributes(Ctx, FTy->getNumParams(), ParamAttrs);
541 FunctionType *FTy = F.getFunctionType();
542 SmallVector<Type *> ArgTypes(FTy->params());
545 FunctionType *NFTy = inlinableVariadicFunctionType(M, FTy);