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

/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Driver/
H A DDriver.cpp1127 types::ID OutputTy; local
1130 OutputTy = types::TY_Dependencies;
1132 OutputTy = Input->getType();
1135 OutputTy = types::getPreprocessedType(OutputTy);
1136 assert(OutputTy != types::TY_INVALID &&
1139 return new PreprocessJobAction(Input, OutputTy);
1142 types::ID OutputTy = types::TY_PCH; local
1145 OutputTy = types::TY_Nothing;
1147 return new PrecompileJobAction(Input, OutputTy);
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGStmt.cpp1632 llvm::Type *OutputTy = ConvertType(OutputType); local
1633 if (isa<llvm::IntegerType>(OutputTy))
1634 Arg = Builder.CreateZExt(Arg, OutputTy);
1635 else if (isa<llvm::PointerType>(OutputTy))
1638 assert(OutputTy->isFloatingPointTy() && "Unexpected output type");
1639 Arg = Builder.CreateFPExt(Arg, OutputTy);

Completed in 133 milliseconds