Home
last modified time | relevance | path

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

/src/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp2897 llvm::Type *OutputTy = ConvertType(OutputType); in EmitAsmStmt() local
2898 if (isa<llvm::IntegerType>(OutputTy)) in EmitAsmStmt()
2899 Arg = Builder.CreateZExt(Arg, OutputTy); in EmitAsmStmt()
2900 else if (isa<llvm::PointerType>(OutputTy)) in EmitAsmStmt()
2902 else if (OutputTy->isFloatingPointTy()) in EmitAsmStmt()
2903 Arg = Builder.CreateFPExt(Arg, OutputTy); in EmitAsmStmt()
/src/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp4769 types::ID OutputTy; in ConstructPhaseAction() local
4774 OutputTy = types::TY_Dependencies; in ConstructPhaseAction()
4776 OutputTy = Input->getType(); in ConstructPhaseAction()
4786 OutputTy = types::getPreprocessedType(OutputTy); in ConstructPhaseAction()
4787 assert(OutputTy != types::TY_INVALID && in ConstructPhaseAction()
4790 return C.MakeAction<PreprocessJobAction>(Input, OutputTy); in ConstructPhaseAction()
4805 types::ID OutputTy = getPrecompiledType(Input->getType()); in ConstructPhaseAction() local
4806 assert(OutputTy != types::TY_INVALID && in ConstructPhaseAction()
4812 if (OutputTy == types::TY_PCH) { in ConstructPhaseAction()
4816 OutputTy = types::TY_ModuleFile; in ConstructPhaseAction()
[all …]