diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2009-06-17 18:39:13 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2009-06-17 18:39:13 +0000 |
commit | 55f960e1d2e58215a0c274e8d30e6036c96a2959 (patch) | |
tree | bfba868ab5c23c63103b59225fabbf9c06df9c2e /gdb/s390-tdep.c | |
parent | 7ccb0be9545330795513b699b8ec1d6770c0e755 (diff) | |
download | gdb-55f960e1d2e58215a0c274e8d30e6036c96a2959.zip gdb-55f960e1d2e58215a0c274e8d30e6036c96a2959.tar.gz gdb-55f960e1d2e58215a0c274e8d30e6036c96a2959.tar.bz2 |
* prologue-value.c (make_pv_area): Add ADDR_BIT argument.
Use it instead of address bits of current_gdbarch.
* prologue-value.c (make_pv_area): Add ADDR_BIT argument.
* arm-tdep.c (thumb_analyze_prologue): Pass address bits to
make_pv_area.
(arm_scan_prologue): Likewise.
* m32c-tdep.c (m32c_analyze_prologue): Likewise.
* mep-tdep.c (mep_analyze_prologue): Likewise.
* mn10300-tdep.c (mn10300_analyze_prologue): Likewise.
* s390-tdep.c (s390_analyze_prologue): Likewise.
Diffstat (limited to 'gdb/s390-tdep.c')
-rw-r--r-- | gdb/s390-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/s390-tdep.c b/gdb/s390-tdep.c index c7b1d7e..b309524 100644 --- a/gdb/s390-tdep.c +++ b/gdb/s390-tdep.c @@ -857,7 +857,7 @@ s390_analyze_prologue (struct gdbarch *gdbarch, { int i; - data->stack = make_pv_area (S390_SP_REGNUM); + data->stack = make_pv_area (S390_SP_REGNUM, gdbarch_addr_bit (gdbarch)); /* For the purpose of prologue tracking, we consider the GPR size to be equal to the ABI word size, even if it is actually larger |