This fixes a regression introduced in 9a6f4d451ca7aa06b94a407015fbadb456bc09ef:
void f() {
NSString *__strong* sptr;
void *vptr;
vptr == sptr; // new error: incompatible pointer types
}We're now erroring out on this code because FindCompositePointerType is rejecting the qualifier mismatch between void and NSString *__strong after stripping one level of pointer types.
rdar://70101809