From the bug report:
The problem is that it fails when trying to compare -65536 (or 4294901760) to 0xFFFF,0000. This is because the
constant in the instruction is sign extended to 64 bits (0xFFFF,FFFF,FFFF,0000) and then compared to the non
extended 64 bit version expected by TableGen.In contrast, the DAGISelEmitter generates special code for AND immediates (OPC_CheckAndImm), which does not
sign extend.
This patch doesn't introduce the special case for AND (and OR) immediates since the majority of it is related to handling known bits that have no effect on the result and GlobalISel doesn't detect known-bits at this time. Instead this patch just ensures that the immediate is extended consistently on both sides of the check.
Thanks to Diana Picus for the detailed bug report.