Searched refs:OutputTy (Results 1 – 2 of 2) sorted by relevance
3901 types::ID OutputTy; in ConstructPhaseAction() local3906 OutputTy = types::TY_Dependencies; in ConstructPhaseAction()3908 OutputTy = Input->getType(); in ConstructPhaseAction()3914 OutputTy = types::getPreprocessedType(OutputTy); in ConstructPhaseAction()3915 assert(OutputTy != types::TY_INVALID && in ConstructPhaseAction()3918 return C.MakeAction<PreprocessJobAction>(Input, OutputTy); in ConstructPhaseAction()3921 types::ID OutputTy = getPrecompiledType(Input->getType()); in ConstructPhaseAction() local3922 assert(OutputTy != types::TY_INVALID && in ConstructPhaseAction()3928 if (OutputTy == types::TY_PCH) { in ConstructPhaseAction()3932 OutputTy = types::TY_ModuleFile; in ConstructPhaseAction()[all …]
2440 llvm::Type *OutputTy = ConvertType(OutputType); in EmitAsmStmt() local2441 if (isa<llvm::IntegerType>(OutputTy)) in EmitAsmStmt()2442 Arg = Builder.CreateZExt(Arg, OutputTy); in EmitAsmStmt()2443 else if (isa<llvm::PointerType>(OutputTy)) in EmitAsmStmt()2446 assert(OutputTy->isFloatingPointTy() && "Unexpected output type"); in EmitAsmStmt()2447 Arg = Builder.CreateFPExt(Arg, OutputTy); in EmitAsmStmt()