From Jason Merrill <jason@cygnus.com>:
[deliverable/binutils-gdb.git] / gprof / dummy.c
CommitLineData
921bc435 1#include "gprof.h"
5489fcc3
KR
2#include "symtab.h"
3
921bc435
SEF
4
5/*
6 * dummy.c -- This file should be used for an unsupported processor type.
7 * It does nothing, but prevents findcall() from being unresolved.
8 */
9
5489fcc3 10void
12516a37
KR
11DEFUN (find_call, (parent, p_lowpc, p_highpc),
12 Sym * parent AND bfd_vma p_lowpc AND bfd_vma p_highpc)
921bc435 13{
869b94c5 14 fprintf (stderr, "%s: -c not supported on this machine architecture\n",
12516a37 15 whoami);
9edcbc03
ILT
16
17 /* Don't give the error more than once. */
18 ignore_direct_calls = FALSE;
03c35bcb 19}
This page took 0.16365 seconds and 4 git commands to generate.