mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 13:09:48 +00:00
19 lines
436 B
C
19 lines
436 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 supported on this machine architecture\n",
|
|
whoami);
|
|
} /* find_call */
|
|
|
|
/*** end of dummy.c ***/
|