Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:OutputTy

1922         llvm::Type *OutputTy = ConvertType(OutputType);
1923 if (isa<llvm::IntegerType>(OutputTy))
1924 Arg = Builder.CreateZExt(Arg, OutputTy);
1925 else if (isa<llvm::PointerType>(OutputTy))
1928 assert(OutputTy->isFloatingPointTy() && "Unexpected output type");
1929 Arg = Builder.CreateFPExt(Arg, OutputTy);