Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGStmt.cpp2576 llvm::Type *OutputTy = ConvertType(OutputType); in EmitAsmStmt() local
2577 if (isa<llvm::IntegerType>(OutputTy)) in EmitAsmStmt()
2578 Arg = Builder.CreateZExt(Arg, OutputTy); in EmitAsmStmt()
2579 else if (isa<llvm::PointerType>(OutputTy)) in EmitAsmStmt()
2581 else if (OutputTy->isFloatingPointTy()) in EmitAsmStmt()
2582 Arg = Builder.CreateFPExt(Arg, OutputTy); in EmitAsmStmt()
/llvm-project-15.0.7/clang/lib/Driver/
H A DDriver.cpp4558 types::ID OutputTy; in ConstructPhaseAction() local
4563 OutputTy = types::TY_Dependencies; in ConstructPhaseAction()
4565 OutputTy = Input->getType(); in ConstructPhaseAction()
4575 OutputTy = types::getPreprocessedType(OutputTy); in ConstructPhaseAction()
4576 assert(OutputTy != types::TY_INVALID && in ConstructPhaseAction()
4579 return C.MakeAction<PreprocessJobAction>(Input, OutputTy); in ConstructPhaseAction()
4586 types::ID OutputTy = getPrecompiledType(Input->getType()); in ConstructPhaseAction() local
4587 assert(OutputTy != types::TY_INVALID && in ConstructPhaseAction()
4593 if (OutputTy == types::TY_PCH) { in ConstructPhaseAction()
4597 OutputTy = types::TY_ModuleFile; in ConstructPhaseAction()
[all …]