aboutsummaryrefslogtreecommitdiff
path: root/gprof/ns532.c
diff options
context:
space:
mode:
Diffstat (limited to 'gprof/ns532.c')
-rw-r--r--gprof/ns532.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/gprof/ns532.c b/gprof/ns532.c
index ae3f801..c68fae4 100644
--- a/gprof/ns532.c
+++ b/gprof/ns532.c
@@ -1,13 +1,17 @@
#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.
*/
-findcall (parentp, p_lowpc, p_highpc)
- nltype *parentp;
- unsigned long p_lowpc;
- unsigned long p_highpc;
+void
+find_call (parent, p_lowpc, p_highpc)
+ Sym *parent;
+ bfd_vma p_lowpc;
+ bfd_vma p_highpc;
{
+ fprintf (stderr, "%s: -c supported on this machine architecture\n",
+ whoami);
}