HomeSort by: relevance | last modified time | path
    Searched refs:DestIntTy (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGCall.cpp 1189 llvm::Type *DestIntTy = Ty;
1190 if (isa<llvm::PointerType>(DestIntTy))
1191 DestIntTy = CGF.IntPtrTy;
1193 if (Val->getType() != DestIntTy) {
1199 uint64_t DstSize = DL.getTypeSizeInBits(DestIntTy);
1203 Val = CGF.Builder.CreateTrunc(Val, DestIntTy, "coerce.val.ii");
1205 Val = CGF.Builder.CreateZExt(Val, DestIntTy, "coerce.val.ii");
1210 Val = CGF.Builder.CreateIntCast(Val, DestIntTy, false, "coerce.val.ii");
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 263 Type *DestIntTy = IntegerType::getIntNTy(Scalar->getContext(), DestWidth);
264 return new BitCastInst(Builder.CreateTrunc(Scalar, DestIntTy), DestTy);

Completed in 34 milliseconds