869b94c5f6
* Makefile.in: Add dependecies for $(OBJS) on header files. * cg_print.c (print_cycle, print_members, cg_print_index): Fix new style output format to make it consistent. * dummy.c (find_call): Fix typo in error message.
17 lines
395 B
C
17 lines
395 B
C
#include "gprof.h"
|
|
#include "symtab.h"
|
|
|
|
|
|
/*
|
|
* dummy.c -- This file should be used for an unsupported processor type.
|
|
* It does nothing, but prevents findcall() from being unresolved.
|
|
*/
|
|
|
|
void
|
|
DEFUN (find_call, (parent, p_lowpc, p_highpc),
|
|
Sym * parent AND bfd_vma p_lowpc AND bfd_vma p_highpc)
|
|
{
|
|
fprintf (stderr, "%s: -c not supported on this machine architecture\n",
|
|
whoami);
|
|
}
|