diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-01-21 19:43:48 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-01-21 19:43:48 +0000 |
commit | 73c1f219a3acce0f4763fa968de7e74525b4313d (patch) | |
tree | 391549e9dfdfcf4945cbf4c0a6446626f42f8b41 /gdb/inferior.h | |
parent | eb4f72c5f97465009446c097eef2204c6e8573e2 (diff) | |
download | gdb-73c1f219a3acce0f4763fa968de7e74525b4313d.zip gdb-73c1f219a3acce0f4763fa968de7e74525b4313d.tar.gz gdb-73c1f219a3acce0f4763fa968de7e74525b4313d.tar.bz2 |
2003-01-21 Andrew Cagney <ac131313@redhat.com>
* exec.c (text_start): Delete global variable.
(exec_file_attach): Make text_start local to the function.
* inferior.h (BEFORE_TEXT_END, AFTER_TEXT_END): Delete macros.
* valops.c (hand_function_call): Delete code that handles
BEFORE_TEXT_END and AFTER_TEXT_END.
* gdbarch.sh (CALL_DUMMY_LENGTH): Test call_dummy_length instead
of CALL_DUMMY_LOCATION.
* gdbarch.c: Regenerate.
* inferior.h (deprecated_pc_in_call_dummy_before_text_end)
(deprecated_pc_in_call_dummy_after_text_end): Delete declaration.
* blockframe.c (deprecated_pc_in_call_dummy_before_text_end)
(deprecated_pc_in_call_dummy_after_text_end): Delete functions.
(text_end): Delete extern declaration.
Diffstat (limited to 'gdb/inferior.h')
-rw-r--r-- | gdb/inferior.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/gdb/inferior.h b/gdb/inferior.h index 67c1170..4616a1f 100644 --- a/gdb/inferior.h +++ b/gdb/inferior.h @@ -418,8 +418,6 @@ extern int attach_flag; /* Possible values for CALL_DUMMY_LOCATION. */ #define ON_STACK 1 -#define BEFORE_TEXT_END 2 -#define AFTER_TEXT_END 3 #define AT_ENTRY_POINT 4 #if !defined (CALL_DUMMY_ADDRESS) @@ -482,24 +480,6 @@ extern int attach_flag; version should be able to handle all cases since that code works by saving the address of the dummy's breakpoint (where ever it is). */ -extern int deprecated_pc_in_call_dummy_before_text_end (CORE_ADDR pc, - CORE_ADDR sp, - CORE_ADDR frame_address); - -/* NOTE: cagney/2002-11-24: Targets need to both switch to generic - dummy frames, and use generic_pc_in_call_dummy(). The generic - version should be able to handle all cases since that code works by - saving the address of the dummy's breakpoint (where ever it is). */ - -extern int deprecated_pc_in_call_dummy_after_text_end (CORE_ADDR pc, - CORE_ADDR sp, - CORE_ADDR frame_address); - -/* NOTE: cagney/2002-11-24: Targets need to both switch to generic - dummy frames, and use generic_pc_in_call_dummy(). The generic - version should be able to handle all cases since that code works by - saving the address of the dummy's breakpoint (where ever it is). */ - extern int deprecated_pc_in_call_dummy_on_stack (CORE_ADDR pc, CORE_ADDR sp, CORE_ADDR frame_address); |