Searched refs:OutputTy (Results 1 – 2 of 2) sorted by relevance
1208 types::ID OutputTy; in ConstructPhaseAction() local1211 OutputTy = types::TY_Dependencies; in ConstructPhaseAction()1213 OutputTy = Input->getType(); in ConstructPhaseAction()1216 OutputTy = types::getPreprocessedType(OutputTy); in ConstructPhaseAction()1217 assert(OutputTy != types::TY_INVALID && in ConstructPhaseAction()1220 return new PreprocessJobAction(Input, OutputTy); in ConstructPhaseAction()1223 types::ID OutputTy = types::TY_PCH; in ConstructPhaseAction() local1226 OutputTy = types::TY_Nothing; in ConstructPhaseAction()1228 return new PrecompileJobAction(Input, OutputTy); in ConstructPhaseAction()
1554 llvm::Type *OutputTy = ConvertType(OutputType); in EmitAsmStmt() local1555 if (isa<llvm::IntegerType>(OutputTy)) in EmitAsmStmt()1556 Arg = Builder.CreateZExt(Arg, OutputTy); in EmitAsmStmt()1557 else if (isa<llvm::PointerType>(OutputTy)) in EmitAsmStmt()1560 assert(OutputTy->isFloatingPointTy() && "Unexpected output type"); in EmitAsmStmt()1561 Arg = Builder.CreateFPExt(Arg, OutputTy); in EmitAsmStmt()