Branch: Tag:

2016-10-22

2016-10-22 13:33:27 by Henrik Grubbström (Grubba) <grubba@grubba.org>

Build: Get gcc to complain less about several switches.

Recent gcc complains about switch statements on enums if not
all values are handled explicitly.

378:    if(!(flags & DO_POP)) break;    do_cond_jump(CDR(n), label , !iftrue, flags | DO_NOT_COPY);    return; +  default: +  /* Inform gcc that we handle all the values in the enum. */ +  break;    }       code_expression(n, flags | DO_NOT_COPY, "condition");