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 | d9b023ccd41c119362f440ab9dabc61613beb577 (patch) | |
tree | 9614ea542b0f20e63ca3ae6e80edd62a9e951edc /gdb/alpha-tdep.h | |
parent | dc129d82386b3ae4a511f9f60a76ac481d33d304 (diff) | |
download | gdb-d9b023ccd41c119362f440ab9dabc61613beb577.zip gdb-d9b023ccd41c119362f440ab9dabc61613beb577.tar.gz gdb-d9b023ccd41c119362f440ab9dabc61613beb577.tar.bz2 |
* 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 fe2716e..b5e7218 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 */ |