pike.git
/
src
/
program.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/program.c:5208:
if (old_p != p) { yyerror("Got different program for inherit in second pass " "(resolver problem)."); } /* Restore annotations (if any) to and from the inherited program. */ do { struct inherit *src_inh = p->inherits; struct inherit *dst_inh = Pike_compiler->new_program->inherits + inherit_offset;
-
if (!src_inh->annotations)
continue
;
+
if (!src_inh->annotations)
break
;
dst_inh->annotations = copy_array(src_inh->annotations); } while(0); if (Pike_compiler->compiler_pass == COMPILER_PASS_EXTRA) { return; } assert(Pike_compiler->compiler_pass == COMPILER_PASS_LAST);