int func(int v) { switch (v & 1) { case 0: return 42; case 1: return 23; } } int main(void) { return func(0); }