Searched defs:DestIntTy (Results 1 - 1 of 1) sorted by relevance

/external/clang/lib/CodeGen/
H A DCGCall.cpp930 llvm::Type *DestIntTy = Ty; local
931 if (isa<llvm::PointerType>(DestIntTy))
932 DestIntTy = CGF.IntPtrTy;
934 if (Val->getType() != DestIntTy) {
940 uint64_t DstSize = DL.getTypeSizeInBits(DestIntTy);
944 Val = CGF.Builder.CreateTrunc(Val, DestIntTy, "coerce.val.ii");
946 Val = CGF.Builder.CreateZExt(Val, DestIntTy, "coerce.val.ii");
951 Val = CGF.Builder.CreateIntCast(Val, DestIntTy, false, "coerce.val.ii");

Completed in 38 milliseconds