We can always move the 'not' op of a compare into the predicate of the compare itself to eliminate the not (xor).
The test case (poo) that looks worse was discussed in D33172 / PR32791 ( https://bugs.llvm.org/show_bug.cgi?id=32791 ). The common value is easy for CSE to detect, so there should be no actual regressions in that case.
D35044 reminded me that I had a draft patch for this ready to go once PR32791 was resolved. That change will make this cleaner, but it doesn't affect the functionality.
This patch will help clear the way for the remaining fixes needed to resolve:
https://bugs.llvm.org/show_bug.cgi?id=32706 (making 'not' ops rather than random 'xor' canonical in IR).
This test also got worse, but I guess it will CSE too?