As described in https://bugs.llvm.org/show_bug.cgi?id=52429 this fold is incorrect, because inbounds only guarantees that the pointers don't wrap in the unsigned space, it is possible that the sign boundary is crossed by an object.
I'm dropping the fold entirely rather than adjusting it, because computePointerICmp() fully subsumes it (with correct predicate handling).
Maybe add comments explaining why we don't fold each of these?