Fixes Coverity issue
1468436. As Coverity correctly detects,
kind::BITVECTOR_XOR is dealt with in an if-statement before the switch
statement on kind. This is because kind::XOR is binary while
kind::BITVECTOR_XOR is n-ary (as a comment in the code correctly
indicates).
{
case kind::BITVECTOR_OR: new_kind = kind::OR; break;
case kind::BITVECTOR_AND: new_kind = kind::AND; break;
- case kind::BITVECTOR_XOR: new_kind = kind::XOR; break;
case kind::BITVECTOR_NOT: new_kind = kind::NOT; break;
default: Unhandled();
}