SimplifyCFG currently forms a switch from an X == C1 || X == C2 style comparison. This negatively interferes with other optimizations, primarily because many important loop optimizations like rotation and vectorizations do not handle switches (https://bugs.llvm.org/show_bug.cgi?id=44461, https://bugs.llvm.org/show_bug.cgi?id=48844). At the same time forming a two-case switch with a common target is unlikely to be beneficial for further optimization or target lowering.
This patch changes the heuristic to require at least three cases in the switch, rather than only two. This is just a prototype patch to get some initial feedback on whether the approach is sound (I would need to adjust tests to preserve intent). An alternative suggested by @xbolva00 is to instead delay this fold until late in the pipeline. Would that be a better approach?