* i386ly-tdep.c (i386lynx_saved_pc_after_call): Change call_inst

to unsigned char to avoid domain warning for some values.
This commit is contained in:
Stu Grossman 1993-11-29 19:40:08 +00:00
parent b1955f0b2a
commit d954204659
2 changed files with 11 additions and 1 deletions

View 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):

View 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)