Fold the following case on SelectionDAG combiner
This patch includes the regression test cases
bswap(logic_op(x, bswap(y))) -> logic_op(bswap(x), y) bswap(logic_op(bswap(x), y)) -> logic_op(x, bswap(y)) bswap(logic_op(bswap(x), bswap(y))) -> logic_op(x, y) (with multiuse)
youre *_rhs_* still have the bswap on the lhs.