* convex-xdep.c, hppab-nat.c, i860-tdep.c, infptrace.c: Remove

decl for attach_flag, it now lives in inferior.h.
* hppa-pinsn.c:  Reformat opcode tables.  Add function prototypes.
Make most functions static.
* hppah-nat.c:  General cleanups, remove BSD specific code (since
that all lives in hppab-nat.c).
* hppah-tdep.c (frame_chain_valid), tm-hppa.h (FRAME_CHAIN):
Change sense of test against inside_entry_file().  This fix is
from U. of Utah.
* tm-hppa.h (PUSH_DUMMY_FRAME, POP_FRAME):  Use char * for 2nd arg
to read/write_register_bytes().
This commit is contained in:
Stu Grossman
1992-12-15 01:45:15 +00:00
parent 764c960db4
commit 01d1590bab
9 changed files with 78 additions and 114 deletions

View File

@@ -759,7 +759,7 @@ int frame_chain_valid (chain, thisframe)
{
CORE_ADDR pc = get_pc_function_start (FRAME_SAVED_PC (thisframe));
if (!inside_entry_file (pc))
if (inside_entry_file (pc))
return 0;
/* look for stw rp, -20(0,sp); copy 4,1; copy sp, 4 */
if (read_memory_integer (pc, 4) == 0x6BC23FD9)
@@ -802,7 +802,6 @@ gcc_p (pc)
return 0;
}
find_dummy_frame_regs (frame, frame_saved_regs)
struct frame_info *frame;
struct frame_saved_regs *frame_saved_regs;