| 2791 | } |
| 2792 | |
| 2793 | bool ICmp::isPtrCmp() const { |
| 2794 | auto &elem_ty = a->getType(); |
| 2795 | return elem_ty.isPtrType() || |
| 2796 | (elem_ty.isVectorType() && |
| 2797 | elem_ty.getAsAggregateType()->getChild(0).isPtrType()); |
| 2798 | } |
| 2799 | |
| 2800 | void ICmp::rauw(const Value &what, Value &with) { |
| 2801 | RAUW(a); |
no test coverage detected