diff options
author | Sean Eric Fagan <sef@cygnus> | 1992-03-06 12:01:13 +0000 |
---|---|---|
committer | Sean Eric Fagan <sef@cygnus> | 1992-03-06 12:01:13 +0000 |
commit | 921bc435810a376ef5bc1cf86274d0433d9478ff (patch) | |
tree | 4184ec40df69b056b5b71fd85fa954cd3af5d2b9 /gprof/dummy.c | |
parent | 09ff0e74d9432ae9209d2d13226ff7aaee6f0ebd (diff) | |
download | gdb-921bc435810a376ef5bc1cf86274d0433d9478ff.zip gdb-921bc435810a376ef5bc1cf86274d0433d9478ff.tar.gz gdb-921bc435810a376ef5bc1cf86274d0433d9478ff.tar.bz2 |
Routines for currently-unsupported architectures. findcall() just returns
in dummy.c, and dummy.h mostly contains copyright. (These were originally
the hp300 files from the UCBerkeley net2 tape.)
Diffstat (limited to 'gprof/dummy.c')
-rw-r--r-- | gprof/dummy.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gprof/dummy.c b/gprof/dummy.c new file mode 100644 index 0000000..21a6db3 --- /dev/null +++ b/gprof/dummy.c @@ -0,0 +1,13 @@ +#include "gprof.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; +{ +} |