mep-tdep.c: Wrong signness for instruction buffer.
authorPedro Alves <palves@redhat.com>
Fri, 19 Apr 2013 15:15:55 +0000 (15:15 +0000)
committerPedro Alves <palves@redhat.com>
Fri, 19 Apr 2013 15:15:55 +0000 (15:15 +0000)
There seems to be no reason for this to be signed.

gdb/
2013-04-19  Pedro Alves  <palves@redhat.com>

* mep-tdep.c (mep_get_insn): Change 'insn' parameter type to
unsigned long *.

gdb/ChangeLog
gdb/mep-tdep.c

index a04e6d8d6f0e20e9c4be1638baad6ce03a8d003e..cfd5449e02326ba47e1f8d7ab115d4c9a15737cc 100644 (file)
@@ -1,3 +1,8 @@
+2013-04-19  Pedro Alves  <palves@redhat.com>
+
+       * mep-tdep.c (mep_get_insn): Change 'insn' parameter type to
+       unsigned long *.
+
 2013-04-19  Pedro Alves  <palves@redhat.com>
 
        * alpha-tdep.c (heuristic_fence_post): Change type to int.
index 3d917738ac7e5462f1ce1d960d0dcf4cc09d44ad..7c5f9921530c96c55c17782ca64bbeb7a682b5d0 100644 (file)
@@ -1424,7 +1424,7 @@ mep_pc_in_vliw_section (CORE_ADDR pc)
    anyway.  */
 
 static CORE_ADDR 
-mep_get_insn (struct gdbarch *gdbarch, CORE_ADDR pc, long *insn)
+mep_get_insn (struct gdbarch *gdbarch, CORE_ADDR pc, unsigned long *insn)
 {
   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
   int pc_in_vliw_section;