diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2009-09-29 12:51:34 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2009-09-29 12:51:34 +0000 |
commit | beaabab2393fbf6cc69360b6b4445f86d6a5ea67 (patch) | |
tree | 4a460052e0c2c2f6d8fb83951cdc846ec85a67ad | |
parent | 0505e9020e29fbe2e8460cd16d7f5da30129a3ce (diff) | |
download | gdb-beaabab2393fbf6cc69360b6b4445f86d6a5ea67.zip gdb-beaabab2393fbf6cc69360b6b4445f86d6a5ea67.tar.gz gdb-beaabab2393fbf6cc69360b6b4445f86d6a5ea67.tar.bz2 |
* s390-tdep.c (s390_displaced_step_fixup): Use type ULONGEST
instead of CORE_ADDR for "amode".
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/s390-tdep.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b287694..a1c6674 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2009-09-29 Ulrich Weigand <uweigand@de.ibm.com> + + * s390-tdep.c (s390_displaced_step_fixup): Use type ULONGEST + instead of CORE_ADDR for "amode". + 2009-09-29 Joel Brobecker <brobecker@adacore.com> * ia64-tdep.c: Update the comments on how we insert/remove diff --git a/gdb/s390-tdep.c b/gdb/s390-tdep.c index b8a220f..8edabb5 100644 --- a/gdb/s390-tdep.c +++ b/gdb/s390-tdep.c @@ -1230,7 +1230,7 @@ s390_displaced_step_fixup (struct gdbarch *gdbarch, /* Get current PC and addressing mode bit. */ CORE_ADDR pc = regcache_read_pc (regs); - CORE_ADDR amode = 0; + ULONGEST amode = 0; if (register_size (gdbarch, S390_PSWA_REGNUM) == 4) { |