Searched refs:OutputTy (Results 1 – 2 of 2) sorted by relevance
3918 types::ID OutputTy; in ConstructPhaseAction() local3923 OutputTy = types::TY_Dependencies; in ConstructPhaseAction()3925 OutputTy = Input->getType(); in ConstructPhaseAction()3931 OutputTy = types::getPreprocessedType(OutputTy); in ConstructPhaseAction()3932 assert(OutputTy != types::TY_INVALID && in ConstructPhaseAction()3935 return C.MakeAction<PreprocessJobAction>(Input, OutputTy); in ConstructPhaseAction()3938 types::ID OutputTy = getPrecompiledType(Input->getType()); in ConstructPhaseAction() local3939 assert(OutputTy != types::TY_INVALID && in ConstructPhaseAction()3945 if (OutputTy == types::TY_PCH) { in ConstructPhaseAction()3949 OutputTy = types::TY_ModuleFile; in ConstructPhaseAction()[all …]
2484 llvm::Type *OutputTy = ConvertType(OutputType); in EmitAsmStmt() local2485 if (isa<llvm::IntegerType>(OutputTy)) in EmitAsmStmt()2486 Arg = Builder.CreateZExt(Arg, OutputTy); in EmitAsmStmt()2487 else if (isa<llvm::PointerType>(OutputTy)) in EmitAsmStmt()2490 assert(OutputTy->isFloatingPointTy() && "Unexpected output type"); in EmitAsmStmt()2491 Arg = Builder.CreateFPExt(Arg, OutputTy); in EmitAsmStmt()