pike.git
/
src
/
program.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/program.c:6942:
(id->func.offset == -1)) { /* Function prototype. */ return -1; } return i; } PMOD_EXPORT int find_lfun_fatal(struct program *UNUSED(p), ptrdiff_t lfun) { Pike_fatal("Invalid lfun number: %d\n", lfun);
-
return -1;
+
UNREACHABLE(
return -1
)
;
} int lfun_lookup_id(struct pike_string *lfun_name) { struct svalue *id = low_mapping_string_lookup(lfun_ids, lfun_name); if (!id) return -1; if (TYPEOF(*id) == T_INT) return id->u.integer; my_yyerror("Bad entry in lfun lookup table for %S.", lfun_name); return -1; }