Searched refs:OutputTy (Results 1 – 2 of 2) sorted by relevance
1551 types::ID OutputTy; in ConstructPhaseAction() local1554 OutputTy = types::TY_Dependencies; in ConstructPhaseAction()1556 OutputTy = Input->getType(); in ConstructPhaseAction()1560 OutputTy = types::getPreprocessedType(OutputTy); in ConstructPhaseAction()1561 assert(OutputTy != types::TY_INVALID && in ConstructPhaseAction()1564 return llvm::make_unique<PreprocessJobAction>(std::move(Input), OutputTy); in ConstructPhaseAction()1567 types::ID OutputTy = types::TY_PCH; in ConstructPhaseAction() local1570 OutputTy = types::TY_Nothing; in ConstructPhaseAction()1572 return llvm::make_unique<PrecompileJobAction>(std::move(Input), OutputTy); in ConstructPhaseAction()
1929 llvm::Type *OutputTy = ConvertType(OutputType); in EmitAsmStmt() local1930 if (isa<llvm::IntegerType>(OutputTy)) in EmitAsmStmt()1931 Arg = Builder.CreateZExt(Arg, OutputTy); in EmitAsmStmt()1932 else if (isa<llvm::PointerType>(OutputTy)) in EmitAsmStmt()1935 assert(OutputTy->isFloatingPointTy() && "Unexpected output type"); in EmitAsmStmt()1936 Arg = Builder.CreateFPExt(Arg, OutputTy); in EmitAsmStmt()