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

/external/clang/lib/Driver/
H A DDriver.cpp1279 types::ID OutputTy; local
1282 OutputTy = types::TY_Dependencies;
1284 OutputTy = Input->getType();
1288 OutputTy = types::getPreprocessedType(OutputTy);
1289 assert(OutputTy != types::TY_INVALID &&
1292 return new PreprocessJobAction(Input, OutputTy);
1295 types::ID OutputTy = types::TY_PCH; local
1298 OutputTy = types::TY_Nothing;
1300 return new PrecompileJobAction(Input, OutputTy);
[all...]
/external/clang/lib/CodeGen/
H A DCGStmt.cpp1922 llvm::Type *OutputTy = ConvertType(OutputType); local
1923 if (isa<llvm::IntegerType>(OutputTy))
1924 Arg = Builder.CreateZExt(Arg, OutputTy);
1925 else if (isa<llvm::PointerType>(OutputTy))
1928 assert(OutputTy->isFloatingPointTy() && "Unexpected output type");
1929 Arg = Builder.CreateFPExt(Arg, OutputTy);

Completed in 176 milliseconds