We crash whenever we try to compute x && y or x || y where x and y are of vector type.
For now we do not seem to properly model operations with vectors. In particular, operations && and || on two values of type int __attribute__((ext_vector_type(2))) are not short-circuit, unlike regular logical operators, so even our CFG is incorrect.
Avoid the crash, add respective FIXME tests for later.