* breakpoint.c, breakpoint.h, c-valprint.c, ch-valprint.c,

cp-valprint.c, eval.c, expprint.c, findvar.c, language.c,
	objfiles.h, infcmd.c, printcmd.c, stack.c, typeprint.c,
	valarith.c, valops.c, valprint.c, value.h, values.c: Replace
	value with value_ptr.  This is for the ptx compiler.
	* objfiles.h, target.h: Don't declare a "sec_ptr" field using a
	"sec_ptr" typedef.
	* symm-nat.c: Add a bunch of stuff for symmetry's ptrace stuff.
	#if 0 i386_float_info.
	* symm-tdep.c (round): Remove.  Also remove sgttyb.
	* symm-tdep.c: Remove lots of stuff which duplicates stuff from
	i386-tdep.c.  Remove register_addr and ptx_coff_regno_to_gdb.
	* i386-tdep.c (i386_frame_find_saved_regs): Put in
	I386_REGNO_TO_SYMMETRY check in case it is needed for Dynix
	someday.
	* config/i386/nm-symmetry.h: Change KERNEL_U_ADDR.  Move
	stuff from PTRACE_READ_REGS, PTRACE_WRITE_REGS macros to
	symm-nat.c.  Define CHILD_WAIT and declare child_wait().
	* config/i386/tm-symmetry.h: Remove call function stuff; stuff in
	tm-i386v.h is apparently OK.
	* config/i386/xm-symmetry.h [_SEQUENT_]: Define HAVE_TERMIOS not
	HAVE_TERMIO.  Define MEM_FNS_DECLARED, NEED_POSIX_SETPGID, and
	USE_O_NOCTTY.
This commit is contained in:
Jim Kingdon
1994-03-03 01:00:57 +00:00
parent 4e64845ca5
commit 82a2edfbcf
18 changed files with 925 additions and 737 deletions

View File

@ -428,8 +428,8 @@ language_info (quietly)
#if 0 /* Currently unused */
struct type *
binop_result_type(v1,v2)
value v1,v2;
binop_result_type (v1, v2)
value_ptr v1, v2;
{
int l1,l2,size,uns;
@ -760,7 +760,7 @@ structured_type(type)
/* Returns non-zero if the value VAL represents a true value. */
int
value_true (val)
value val;
value_ptr val;
{
/* It is possible that we should have some sort of error if a non-boolean
value is used in this context. Possibly dependent on some kind of
@ -778,7 +778,7 @@ value_true (val)
void
binop_type_check(arg1,arg2,op)
value arg1,arg2;
value_ptr arg1,arg2;
int op;
{
struct type *t1, *t2;
@ -788,7 +788,7 @@ binop_type_check(arg1,arg2,op)
return;
t1=VALUE_TYPE(arg1);
if (arg2!=(value)NULL)
if (arg2 != NULL)
t2=VALUE_TYPE(arg2);
else
t2=NULL;