reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1045 if (DestSize->getType() != SrcSize->getType()) { 1046 if (DestSize->getType()->getIntegerBitWidth() > 1048 SrcSize = Builder.CreateZExt(SrcSize, DestSize->getType()); 1050 DestSize = Builder.CreateZExt(DestSize, SrcSize->getType()); 1050 DestSize = Builder.CreateZExt(DestSize, SrcSize->getType()); 1053 Value *Ule = Builder.CreateICmpULE(DestSize, SrcSize); 1054 Value *SizeDiff = Builder.CreateSub(DestSize, SrcSize); 1056 Ule, ConstantInt::getNullValue(DestSize->getType()), SizeDiff);