summaryrefslogtreecommitdiff
path: root/gprof/symtab.h
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2001-03-14 03:14:56 +0000
committerAlan Modra <amodra@bigpond.net.au>2001-03-14 03:14:56 +0000
commit2f03d8ae4f701cf7710d14a47e0a6cc539077861 (patch)
treed55ce5b6020729eb103cb1fee509dc03149e4a3a /gprof/symtab.h
parent912f7270cfdb64add96caa3e380fefbd14963e05 (diff)
downloadbinutils-redhat-2f03d8ae4f701cf7710d14a47e0a6cc539077861.tar.gz
David Mosberger's fixes for cross compiling gprof.
Diffstat (limited to 'gprof/symtab.h')
-rw-r--r--gprof/symtab.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/gprof/symtab.h b/gprof/symtab.h
index e717c592e8..8aa9ee534f 100644
--- a/gprof/symtab.h
+++ b/gprof/symtab.h
@@ -1,6 +1,6 @@
/* symtab.h
-
- Copyright 2000 Free Software Foundation, Inc.
+
+ Copyright 2000, 2001 Free Software Foundation, Inc.
This file is part of GNU Binutils.
@@ -28,7 +28,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
to map code-addresses into source-code information. Source-code
information can be any combination of: (i) function-name, (ii)
source file-name, and (iii) source line number.
-
+
The symbol table is used to map addresses into source-code
information. */
@@ -41,11 +41,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
typedef struct sym
{
/* Common information:
-
+
In the symbol-table, fields ADDR and FUNC_NAME are guaranteed
to contain valid information. FILE may be 0, if unknown and
LINE_NUM maybe 0 if unknown. */
-
+
bfd_vma addr; /* Address of entry point. */
bfd_vma end_addr; /* End-address. */
const char *name; /* Name of function this sym is from. */