* i386ly-tdep.c (i386lynx_saved_pc_after_call): Change call_inst
authorStu Grossman <grossman@cygnus>
Mon, 29 Nov 1993 19:40:08 +0000 (19:40 +0000)
committerStu Grossman <grossman@cygnus>
Mon, 29 Nov 1993 19:40:08 +0000 (19:40 +0000)
to unsigned char to avoid domain warning for some values.

gdb/ChangeLog
gdb/i386ly-tdep.c

index 82a6303b0ea9af39c403bd141541cc57dfcdbaac..e8883276a84ce2efd7ee711dccf48d79d9f22ab6 100644 (file)
@@ -1,3 +1,13 @@
+Mon Nov 29 11:36:57 1993  Stu Grossman  (grossman at cygnus.com)
+
+       * i386ly-tdep.c (i386lynx_saved_pc_after_call):  Change call_inst
+       to unsigned char to avoid domain warning for some values.
+
+Mon Nov 22 23:42:59 1993  Steve Chamberlain  (sac@jonny.cygnus.com)
+
+       * remote-e7000.c (e7000_wait): Cope with H8/300 register dump.
+       * config/h8300/h8300hms.mt: Add remote-e7000.
+
 Mon Nov 22 11:03:45 1993  Fred Fish  (fnf@cygnus.com)
 
        Merged changes from kev@spuds.geg.mot.com (Kevin A. Buettner):
index 3f87816947ecd374d1cd4a8ae4c5f34e4b10e702..0d2ef41bf25b5b22b7479ab2f69eb43801436b5b 100644 (file)
@@ -32,7 +32,7 @@ i386lynx_saved_pc_after_call (frame)
      struct frame_info *frame;
 {
   char opcode[7];
-  static const char call_inst[] = {0x9a, 0, 0, 0, 0, 8, 0}; /* lcall 0x8,0x0 */
+  static const unsigned char call_inst[] = {0x9a, 0, 0, 0, 0, 8, 0}; /* lcall 0x8,0x0 */
 
   read_memory (frame->pc - 7, opcode, 7);
   if (memcmp (opcode, call_inst, 7) == 0)