jalangi2 icon indicating copy to clipboard operation
jalangi2 copied to clipboard

try to treat fall-through cases in switch as a single branch

Open msridhar opened this issue 9 years ago • 1 comments

E.g., for this code:

switch (s) {
  case ONE:
  case TWO:
  case THREE:
    doSomething();
  default:
    fail();
}

The first three cases would correspond to a single branch, which is "taken" if s matches ONE, TWO, or THREE, and "not taken" otherwise.

msridhar avatar Feb 05 '16 18:02 msridhar

@ksen007 is there any hope of addressing this one?

msridhar avatar Feb 18 '16 22:02 msridhar