pike.git/src/program.c:1:
/*
|| This file is part of Pike. For copyright information see COPYRIGHT.
|| Pike is distributed under GPL, LGPL and MPL. See the file COPYING
|| for more information.
- || $Id: program.c,v 1.700 2008/05/21 21:55:48 grubba Exp $
+ || $Id: program.c,v 1.701 2008/05/22 20:13:19 mast Exp $
*/
#include "global.h"
#include "program.h"
#include "object.h"
#include "dynamic_buffer.h"
#include "pike_types.h"
#include "stralloc.h"
#include "las.h"
#include "lex.h"
pike.git/src/program.c:3059: Inside #if defined(PIKE_DEBUG)
inh->identifier_ref_offset);
}
fprintf(stderr, "\n"
"%*sIdentifier table:\n"
"%*s ####: Flags Offset Type Name\n",
indent, "", indent, "");
for (d=0; d < p->num_identifiers; d++) {
struct identifier *id = p->identifiers + d;
fprintf(stderr,
- "%*s %4d: %5x %6"PRINTPTRDIFFT"d %4d \"%s\"\n",
+ "%*s %4d: %5x %6"PRINTPTRDIFFT"d %4d \"%s\"\n"
"%*s %s:%d\n",
indent, "",
d, id->identifier_flags, id->func.offset,
id->run_time_type, id->name->str,
indent, "",
p->num_strings?p->strings[id->filename_strno]->str:"-", id->linenumber);
}
fprintf(stderr, "\n"
"%*sVariable table:\n"