This is an extension of D31156 with the goal that we'll allow memcmp() == 0 expansion for x86 to use 2 pairs of loads per block.
The memcmp expansion pass (formerly part of CGP) will generate this kind of pattern with oversized integer compares, so we want to transform these into x86-specific vector nodes before legalization splits things into scalar chunks.
See PR33325 for more details:
https://bugs.llvm.org/show_bug.cgi?id=33325
I would add a comment to explain when this is typically generated, else this feels a bit magic. Something along the lines of:
"This pattern is typically generated by the memcmp expansion pass with oversized integer compares (see PR33325)."