Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:CI1

1899 ///   I = icmp ugt (add (add A, B), CI2), CI1
1906 ConstantInt *CI2, ConstantInt *CI1,
1926 // Check to see that CI1 is an all-ones value with NewWidth bits.
1927 if (CI1->getBitWidth() == NewWidth ||
1928 CI1->getValue() != APInt::getLowBitsSet(CI1->getBitWidth(), NewWidth))
1934 unsigned NeededSignBits = CI1->getBitWidth() - NewWidth + 1;