]>
Commit | Line | Data |
---|---|---|
fbcbb8c4 | 1 | #include "gprof.h" |
af0786b4 | 2 | #include "symtab.h" |
fbcbb8c4 KR |
3 | |
4 | /* | |
5 | * dummy.c -- This file should be used for an unsupported processor type. | |
6 | * It does nothing, but prevents findcall() from being unresolved. | |
7 | */ | |
8 | ||
af0786b4 KR |
9 | void |
10 | find_call (parent, p_lowpc, p_highpc) | |
11 | Sym *parent; | |
12 | bfd_vma p_lowpc; | |
13 | bfd_vma p_highpc; | |
fbcbb8c4 | 14 | { |
af0786b4 KR |
15 | fprintf (stderr, "%s: -c supported on this machine architecture\n", |
16 | whoami); | |
fbcbb8c4 | 17 | } |