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

/freebsd-10.2-release/contrib/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp1311 Value *CreateShadowCast(IRBuilder<> &IRB, Value *V, Type *dstTy, argument
1314 if (dstTy->isIntegerTy() && srcTy->isIntegerTy())
1315 return IRB.CreateIntCast(V, dstTy, Signed);
1316 if (dstTy->isVectorTy() && srcTy->isVectorTy() &&
1317 dstTy->getVectorNumElements() == srcTy->getVectorNumElements())
1318 return IRB.CreateIntCast(V, dstTy, Signed);
1320 size_t dstSizeInBits = VectorOrPrimitiveTypeSizeInBits(dstTy);
1324 return IRB.CreateBitCast(V2, dstTy);

Completed in 44 milliseconds