1992-03-06 20:01:13 +08:00
|
|
|
#include "gprof.h"
|
1995-02-08 06:34:18 +08:00
|
|
|
#include "symtab.h"
|
|
|
|
|
1992-03-06 20:01:13 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* dummy.c -- This file should be used for an unsupported processor type.
|
|
|
|
* It does nothing, but prevents findcall() from being unresolved.
|
|
|
|
*/
|
|
|
|
|
1995-02-08 06:34:18 +08:00
|
|
|
void
|
1995-02-08 10:35:44 +08:00
|
|
|
DEFUN (find_call, (parent, p_lowpc, p_highpc),
|
|
|
|
Sym * parent AND bfd_vma p_lowpc AND bfd_vma p_highpc)
|
1992-03-06 20:01:13 +08:00
|
|
|
{
|
1995-02-08 10:35:44 +08:00
|
|
|
fprintf (stderr, "%s: -c supported on this machine architecture\n",
|
|
|
|
whoami);
|
1995-03-14 10:58:16 +08:00
|
|
|
}
|