diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-10-15 04:26:06 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-10-15 04:26:06 +0000 |
commit | 5d76c8e66273baf43bfee19c3341e605d4a09ad8 (patch) | |
tree | 5db705f610608b293aed609977860b76ae5b272b /gdb/config/ns32k/tm-umax.h | |
parent | 8c4731b588620a52771117864c29f4ab1b6bc892 (diff) | |
download | gdb-5d76c8e66273baf43bfee19c3341e605d4a09ad8.zip gdb-5d76c8e66273baf43bfee19c3341e605d4a09ad8.tar.gz gdb-5d76c8e66273baf43bfee19c3341e605d4a09ad8.tar.bz2 |
* fork-child.c (fork_inferior), remote-eb.c (eb_create_inferior),
remote-mon.c (monitor_create_inferior), remote-nindy.c
(nindy_create_inferior), remote-st.c (st2000_create_inferior),
remote-vx.c (vx_create_inferior): Remove CREATE_INFERIOR_HOOK; it
is replaced by init_trace_fun.
* config/convex/xm-convex.h, convex-xdep.c: Add comments explaining
how to do without CREATE_INFERIOR_HOOK for whoever fixes the Convex
port.
* Makefile.in: Add Mach files to ALLDEPFILES, etc.
* m3-nat.c: Clean up more hair--message(), cprocs.
* configure.in: Recognize Mach targets and hosts.
* config/ns32k/tm-umax.h: Add some #ifndef's so tm-ns32km3.h can
include this file.
* Mach headers in config/*/tm-*.h: Fix includes to match correct
locations of files.
Diffstat (limited to 'gdb/config/ns32k/tm-umax.h')
-rw-r--r-- | gdb/config/ns32k/tm-umax.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/config/ns32k/tm-umax.h b/gdb/config/ns32k/tm-umax.h index ded8252..6d3e1ca 100644 --- a/gdb/config/ns32k/tm-umax.h +++ b/gdb/config/ns32k/tm-umax.h @@ -17,6 +17,8 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +/* This is also included by tm-ns32km3.h, as well as being used by umax. */ + #define TARGET_BYTE_ORDER LITTLE_ENDIAN /* Need to get function ends by adding this to epilogue address from .bf @@ -50,7 +52,9 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Address of end of stack space. */ +#ifndef STACK_END_ADDR #define STACK_END_ADDR (0xfffff000) +#endif /* Stack grows downward. */ @@ -70,6 +74,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #define ABOUT_TO_RETURN(pc) (read_memory_integer (pc, 1) == 0x12) +#ifndef INVALID_FLOAT #ifndef NaN #include <nan.h> #endif NaN @@ -80,6 +85,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ ((s == sizeof (float))? \ NaF (*(float *) p) : \ NaD (*(double *) p)) +#endif /* INVALID_FLOAT */ /* Say how long (ordinary) registers are. */ |