pike.git
/
src
/
program.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/program.c:6438:
return overridden; } /* NOTE: At this point we already have the identifier in the * new program, and just need to add the reference. */ } else { make_a_new_def: #ifdef PIKE_DEBUG if(Pike_compiler->compiler_pass==2)
-
Pike_fatal("Internal error: Not allowed to add more identifiers during second compiler pass.\n");
+
Pike_fatal("Internal error: Not allowed to add more identifiers during second compiler pass.\n"
+
"Added identifier: \"%s\"\n", name->str
);
#endif /* Define a new function */ copy_shared_string(fun.name, name); copy_pike_type(fun.type, type); fun.filename_strno = store_prog_string(c->lex.current_file); fun.linenumber = c->lex.current_line; fun.identifier_flags=function_flags;