This is fixing pr31761: BasicAA is deducing NoAlias
on the result of the GEP if the base pointer is itself NoAlias.
This is possible only if the NoAlias on the base pointer is
deduced with a non-sized query: this should guarantee that
the pointers are belonging to different memory allocation
and that the GEP can't legally jump from one to another.
I had to look at this for a few moments to realize why this was broken: UnknownSize might be unknown, but it is still assumed to be positive, so we only get a one-sided range. Thus, we must use UnknownSize for both sizes.