This patch amends the changes that were committed from D37042 to remove the offset size check in the idiom identification routine.
That check was behaving inconsistently (from target to target) because the offset was implicitly promoted to an integer before the idiom identification routine was called. The result was that when a smaller-than-int offset was added to a nullptr, the idiom was reported as having been matched on platforms where the int size is the same as the pointer size but the idiom was reported as not having been matched on platforms where the int size and the pointer size were different.
Because this check adds little value, and because the behavior of nullptr arithmetic is undefined in all cases (and therefore at our discretion to implement as we choose), it seems best to remove this check in order to guarantee consistent behavior across all platforms.