The GNU compiler gives the possibility to specify a range of consecutive values in a case
label, for example: case: 1 ...
5
.
However, if the values are written in decreasing order, i.e., from the larger value to the smaller one, the range will evaluate as empty. So the
case
body will never be executed.