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

/external/clang/lib/Driver/
H A DDriver.cpp1208 types::ID OutputTy; local
1211 OutputTy = types::TY_Dependencies;
1213 OutputTy = Input->getType();
1216 OutputTy = types::getPreprocessedType(OutputTy);
1217 assert(OutputTy != types::TY_INVALID &&
1220 return new PreprocessJobAction(Input, OutputTy);
1223 types::ID OutputTy = types::TY_PCH; local
1226 OutputTy = types::TY_Nothing;
1228 return new PrecompileJobAction(Input, OutputTy);
[all...]
/external/clang/lib/CodeGen/
H A DCGStmt.cpp1554 llvm::Type *OutputTy = ConvertType(OutputType); local
1555 if (isa<llvm::IntegerType>(OutputTy))
1556 Arg = Builder.CreateZExt(Arg, OutputTy);
1557 else if (isa<llvm::PointerType>(OutputTy))
1560 assert(OutputTy->isFloatingPointTy() && "Unexpected output type");
1561 Arg = Builder.CreateFPExt(Arg, OutputTy);

Completed in 403 milliseconds