import gdb-1999-05-25 snapshot

This commit is contained in:
Jason Molenda
1999-05-25 18:09:09 +00:00
parent 751d21b5b9
commit 392a587b05
121 changed files with 1297 additions and 523 deletions

View File

@@ -59,6 +59,18 @@ vax_skip_prologue (pc)
return pc;
}
/* Return number of args passed to a frame.
Can return -1, meaning no way to tell. */
int
vax_frame_num_args (fi)
struct frame_info *fi;
{
return (0xff & read_memory_integer (FRAME_ARGS_ADDRESS (fi), 1));
}
/* Print the vax instruction at address MEMADDR in debugged memory,
from disassembler info INFO.
Returns length of the instruction, in bytes. */