Home
last modified time | relevance | path

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

/external/clang/lib/Driver/
DDriver.cpp1551 types::ID OutputTy; in ConstructPhaseAction() local
1554 OutputTy = types::TY_Dependencies; in ConstructPhaseAction()
1556 OutputTy = Input->getType(); in ConstructPhaseAction()
1560 OutputTy = types::getPreprocessedType(OutputTy); in ConstructPhaseAction()
1561 assert(OutputTy != types::TY_INVALID && in ConstructPhaseAction()
1564 return llvm::make_unique<PreprocessJobAction>(std::move(Input), OutputTy); in ConstructPhaseAction()
1567 types::ID OutputTy = types::TY_PCH; in ConstructPhaseAction() local
1570 OutputTy = types::TY_Nothing; in ConstructPhaseAction()
1572 return llvm::make_unique<PrecompileJobAction>(std::move(Input), OutputTy); in ConstructPhaseAction()
/external/clang/lib/CodeGen/
DCGStmt.cpp1929 llvm::Type *OutputTy = ConvertType(OutputType); in EmitAsmStmt() local
1930 if (isa<llvm::IntegerType>(OutputTy)) in EmitAsmStmt()
1931 Arg = Builder.CreateZExt(Arg, OutputTy); in EmitAsmStmt()
1932 else if (isa<llvm::PointerType>(OutputTy)) in EmitAsmStmt()
1935 assert(OutputTy->isFloatingPointTy() && "Unexpected output type"); in EmitAsmStmt()
1936 Arg = Builder.CreateFPExt(Arg, OutputTy); in EmitAsmStmt()