diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-09-02 03:05:46 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-09-02 03:05:46 +0000 |
commit | 14aaa6abcf59a37a4a1fec0c4d86d61f922d8ffd (patch) | |
tree | 645e4efd732638382d98f147fe46d9b6589aaa1d /gdb/objfiles.h | |
parent | 21bd10f440450cc0067041f600645a155f2ab6dc (diff) | |
download | gdb-14aaa6abcf59a37a4a1fec0c4d86d61f922d8ffd.zip gdb-14aaa6abcf59a37a4a1fec0c4d86d61f922d8ffd.tar.gz gdb-14aaa6abcf59a37a4a1fec0c4d86d61f922d8ffd.tar.bz2 |
2004-09-01 Andrew Cagney <cagney@gnu.org>
* objfiles.h (struct entry_info): Delete fields main_func_lowpc
and main_func_highpc.
(INVALID_ENTRY_LOWPC, INVALID_ENTRY_HIGHPC): Delete macros.
* objfiles.c (init_entry_point_info, objfile_relocate): Update
* nlmread.c (nlm_symfile_read): Update.
Diffstat (limited to 'gdb/objfiles.h')
-rw-r--r-- | gdb/objfiles.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/gdb/objfiles.h b/gdb/objfiles.h index 29be972..afbe8d2 100644 --- a/gdb/objfiles.h +++ b/gdb/objfiles.h @@ -110,20 +110,6 @@ struct entry_info #define INVALID_ENTRY_POINT (~0) /* ~0 will not be in any file, we hope. */ - /* Start (inclusive) and end (exclusive) of the user code main() function. */ - - CORE_ADDR main_func_lowpc; - CORE_ADDR main_func_highpc; - -/* Use these values when any of the above ranges is invalid. */ - -/* We use these values because it guarantees that there is no number that is - both >= LOWPC && < HIGHPC. It is also highly unlikely that 3 is a valid - module or function start address (as opposed to 0). */ - -#define INVALID_ENTRY_LOWPC (3) -#define INVALID_ENTRY_HIGHPC (1) - }; /* Sections in an objfile. |