pike.git
/
src
/
docode.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/docode.c:371:
} return; case F_APPLY: if(!is_efun(CAR(n), f_not)) break; case F_NOT: 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"); if(flags & DO_POP) { if(iftrue) do_jump(F_BRANCH_WHEN_NON_ZERO, label); else do_jump(F_BRANCH_WHEN_ZERO, label);