Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGStmt.cpp2587 llvm::Type *OutputTy = ConvertType(OutputType); in EmitAsmStmt() local
2588 if (isa<llvm::IntegerType>(OutputTy)) in EmitAsmStmt()
2589 Arg = Builder.CreateZExt(Arg, OutputTy); in EmitAsmStmt()
2590 else if (isa<llvm::PointerType>(OutputTy)) in EmitAsmStmt()
2592 else if (OutputTy->isFloatingPointTy()) in EmitAsmStmt()
2593 Arg = Builder.CreateFPExt(Arg, OutputTy); in EmitAsmStmt()
/openbsd-src/gnu/llvm/clang/lib/Driver/
H A DDriver.cpp4544 types::ID OutputTy; in ConstructPhaseAction() local
4549 OutputTy = types::TY_Dependencies; in ConstructPhaseAction()
4551 OutputTy = Input->getType(); in ConstructPhaseAction()
4561 OutputTy = types::getPreprocessedType(OutputTy); in ConstructPhaseAction()
4562 assert(OutputTy != types::TY_INVALID && in ConstructPhaseAction()
4565 return C.MakeAction<PreprocessJobAction>(Input, OutputTy); in ConstructPhaseAction()
4572 types::ID OutputTy = getPrecompiledType(Input->getType()); in ConstructPhaseAction() local
4573 assert(OutputTy != types::TY_INVALID && in ConstructPhaseAction()
4579 if (OutputTy == types::TY_PCH) { in ConstructPhaseAction()
4583 OutputTy = types::TY_ModuleFile; in ConstructPhaseAction()
[all …]