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

References

lib/Transforms/InstCombine/InstCombineCompares.cpp
 5230   assert(A->getType()->isIntOrIntVectorTy(1) && "Bools only");
 5240         return BinaryOperator::CreateNot(A);
 5249         return BinaryOperator::CreateNot(A);
 5260     return BinaryOperator::CreateNot(Builder.CreateXor(A, B));
 5264     return BinaryOperator::CreateXor(A, B);
 5268     std::swap(A, B);
 5272     return BinaryOperator::CreateAnd(Builder.CreateNot(A), B);
 5276     std::swap(A, B);
 5280     return BinaryOperator::CreateAnd(Builder.CreateNot(B), A);
 5284     std::swap(A, B);
 5288     return BinaryOperator::CreateOr(Builder.CreateNot(A), B);
 5292     std::swap(A, B);
 5296     return BinaryOperator::CreateOr(Builder.CreateNot(B), A);