diff options
author | Jason Thorpe <thorpej@netbsd.org> | 2002-04-21 17:30:09 +0000 |
---|---|---|
committer | Jason Thorpe <thorpej@netbsd.org> | 2002-04-21 17:30:09 +0000 |
commit | 5a93446464c9da66322a369645399b84b12f58f4 (patch) | |
tree | e106d56a9359ae71564f62ba1ad8d74d6e1079cf /gdb/alpha-tdep.h | |
parent | 1dd102ea1a5cfab904c417bc57677ff7ed824d2c (diff) | |
download | gdb-5a93446464c9da66322a369645399b84b12f58f4.tar.gz |
* alpha-tdep.h (gdbarch_tdep): Add vm_min_address member.
* alpha-tdep.c (heuristic_proc_start): Use vm_min_address
from gdbarch_tdep rather than a constant.
(alpha_gdbarch_init): Initialize tdep->vm_min_address to
the default text address for all Alpha Unix ABIs.
(alpha_dump_tdep): Report the value of tdep->vm_min_address.
* config/alpha/tm-alpha.h (VM_MIN_ADDRESS): Delete.
Diffstat (limited to 'gdb/alpha-tdep.h')
-rw-r--r-- | gdb/alpha-tdep.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/alpha-tdep.h b/gdb/alpha-tdep.h index fe2716e0029..b5e721830cf 100644 --- a/gdb/alpha-tdep.h +++ b/gdb/alpha-tdep.h @@ -94,6 +94,8 @@ struct gdbarch_tdep { enum alpha_abi alpha_abi; /* OS/ABI of inferior. */ const char *abi_name; /* Name of the above. */ + + CORE_ADDR vm_min_address; /* used by heuristic_proc_start */ }; #endif /* ALPHA_TDEP_H */ |