This commit is contained in:
John Gilmore
1991-09-13 03:00:28 +00:00
parent 2c346475aa
commit 17f7e032b8
2 changed files with 9 additions and 8 deletions

View File

@ -383,10 +383,11 @@ init_extra_frame_info (fci)
/* Assume innermost frame. May produce strange results for "info frame" /* Assume innermost frame. May produce strange results for "info frame"
but there isn't any way to tell the difference. */ but there isn't any way to tell the difference. */
init_frame_info (1, fci); init_frame_info (1, fci);
else else {
/* We're in get_prev_frame_info. /* We're in get_prev_frame_info.
Take care of everything in init_frame_pc. */ Take care of everything in init_frame_pc. */
; ;
}
} }
void void
@ -455,7 +456,7 @@ read_register_stack (memaddr, myaddr, actual_mem_addr, lval)
if (lval != NULL) if (lval != NULL)
*lval = lval_memory; *lval = lval_memory;
if (actual_mem_addr != NULL) if (actual_mem_addr != NULL)
*actual_mem_addr == memaddr; *actual_mem_addr = memaddr;
} }
} }
@ -500,7 +501,7 @@ write_register_stack (memaddr, myaddr, actual_mem_addr)
if (myaddr != NULL) if (myaddr != NULL)
write_memory (memaddr, myaddr, 4); write_memory (memaddr, myaddr, 4);
if (actual_mem_addr != NULL) if (actual_mem_addr != NULL)
*actual_mem_addr == memaddr; *actual_mem_addr = memaddr;
} }
} }

View File

@ -694,7 +694,7 @@ eb_fetch_registers ()
/* Fetch register REGNO, or all registers if REGNO is -1. /* Fetch register REGNO, or all registers if REGNO is -1.
Returns errno value. */ Returns errno value. */
int void
eb_fetch_register (regno) eb_fetch_register (regno)
int regno; int regno;
{ {
@ -709,7 +709,7 @@ eb_fetch_register (regno)
get_hex_regs (1, regno); get_hex_regs (1, regno);
expect_prompt (); expect_prompt ();
} }
return 0; return;
} }
/* Store the remote registers from the contents of the block REGS. */ /* Store the remote registers from the contents of the block REGS. */