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

References

lib/Transforms/InstCombine/InstCombineCompares.cpp
 1635   BinaryOperator *Shift = dyn_cast<BinaryOperator>(And->getOperand(0));
 1686         Cmp.setOperand(1, ConstantInt::get(And->getType(), NewCst));
 1688         And->setOperand(1, ConstantInt::get(And->getType(), NewAndCst));
 1688         And->setOperand(1, ConstantInt::get(And->getType(), NewAndCst));
 1689         And->setOperand(0, Shift->getOperand(0));
 1703         IsShl ? Builder.CreateLShr(And->getOperand(1), Shift->getOperand(1))
 1704               : Builder.CreateShl(And->getOperand(1), Shift->getOperand(1));