diff options
author | Ken Raeburn <raeburn@cygnus> | 1995-09-05 19:04:22 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1995-09-05 19:04:22 +0000 |
commit | af0786b4013325351bbb5e0c50d0b0510cea62c2 (patch) | |
tree | e6cf4c761c911cd6451258e13f8880e8a0a917d6 /gprof/ns532.c | |
parent | 109eb06cce362f040b062107897826fc1b01431e (diff) | |
download | gdb-af0786b4013325351bbb5e0c50d0b0510cea62c2.zip gdb-af0786b4013325351bbb5e0c50d0b0510cea62c2.tar.gz gdb-af0786b4013325351bbb5e0c50d0b0510cea62c2.tar.bz2 |
some ns32k updates from Ian Dall
Diffstat (limited to 'gprof/ns532.c')
-rw-r--r-- | gprof/ns532.c | 12 |
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); } |