Home
last modified time | relevance | path

Searched refs:OutputTy (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/
H A DDriver.cpp3901 types::ID OutputTy; in ConstructPhaseAction() local
3906 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() local
3922 assert(OutputTy != types::TY_INVALID && in ConstructPhaseAction()
3928 if (OutputTy == types::TY_PCH) { in ConstructPhaseAction()
3932 OutputTy = types::TY_ModuleFile; in ConstructPhaseAction()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGStmt.cpp2440 llvm::Type *OutputTy = ConvertType(OutputType); in EmitAsmStmt() local
2441 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()