From: Ulrich Weigand Date: Tue, 29 Sep 2009 12:52:26 +0000 (+0000) Subject: * s390-tdep.c (s390_displaced_step_fixup): Use type ULONGEST X-Git-Tag: gdb_7_0-2009-10-06-release~26 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2452cc3b0a30455b7dd9f34697be3361336c8139;p=thirdparty%2Fbinutils-gdb.git * s390-tdep.c (s390_displaced_step_fixup): Use type ULONGEST instead of CORE_ADDR for "amode". --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 595f0666eee..04b0eb1f190 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2009-09-29 Ulrich Weigand + + * s390-tdep.c (s390_displaced_step_fixup): Use type ULONGEST + instead of CORE_ADDR for "amode". + 2009-09-29 Ulrich Weigand * gdbarch.sh (displaced_step_hw_singlestep): New callback. diff --git a/gdb/s390-tdep.c b/gdb/s390-tdep.c index b8a220fdaa7..8edabb516bc 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) {