reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/AggressiveInstCombine/TruncInstCombine.cpp
  202   assert(MinBitWidth >= TruncBitWidth);
  204   if (MinBitWidth > TruncBitWidth) {
  211     Type *Ty = DL.getSmallestLegalIntType(DstTy->getContext(), MinBitWidth);
  214     MinBitWidth = Ty ? Ty->getScalarSizeInBits() : OrigBitWidth;
  220     bool FromLegal = MinBitWidth == 1 || DL.isLegalInteger(OrigBitWidth);
  221     bool ToLegal = MinBitWidth == 1 || DL.isLegalInteger(MinBitWidth);
  221     bool ToLegal = MinBitWidth == 1 || DL.isLegalInteger(MinBitWidth);
  225   return MinBitWidth;