Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:OutputTy

1647         llvm::Type *OutputTy = ConvertType(OutputType);
1648 if (isa<llvm::IntegerType>(OutputTy))
1649 Arg = Builder.CreateZExt(Arg, OutputTy);
1650 else if (isa<llvm::PointerType>(OutputTy))
1653 assert(OutputTy->isFloatingPointTy() && "Unexpected output type");
1654 Arg = Builder.CreateFPExt(Arg, OutputTy);