* m88k-nat-c (SXIP_OFFSET, SNIP_OFFSET, SFIP_OFFSET): Enclose

macro definitions in parenthesis.  Bug reported by karl@hq.ileaf.com.
This commit is contained in:
Fred Fish 1993-03-05 00:45:08 +00:00
parent f68d8549cc
commit e5bb7e61ad
2 changed files with 9 additions and 6 deletions

View File

@ -1,5 +1,8 @@
Thu Mar 4 08:22:55 1993 Fred Fish (fnf@cygnus.com)
* m88k-nat-c (SXIP_OFFSET, SNIP_OFFSET, SFIP_OFFSET): Enclose
macro definitions in parenthesis. Bug reported by karl@hq.ileaf.com.
* dbxread.c (dbx_symfile_init): Catch the case where there is
no string table, but the only way we find out is by reading zero
bytes from EOF.

View File

@ -47,14 +47,14 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
/* #include <sys/ptrace.h> */
/* define offsets to the pc instruction offsets in ptrace_user struct */
#define SXIP_OFFSET (char *)&u.pt_sigframe.sig_sxip - (char *)&u
#define SNIP_OFFSET (char *)&u.pt_sigframe.sig_snip - (char *)&u
#define SFIP_OFFSET (char *)&u.pt_sigframe.sig_sfip - (char *)&u
#define SXIP_OFFSET ((char *)&u.pt_sigframe.sig_sxip - (char *)&u)
#define SNIP_OFFSET ((char *)&u.pt_sigframe.sig_snip - (char *)&u)
#define SFIP_OFFSET ((char *)&u.pt_sigframe.sig_sfip - (char *)&u)
#else
/* define offsets to the pc instruction offsets in ptrace_user struct */
#define SXIP_OFFSET (char *)&u.pt_sigframe.dg_sigframe.sc_sxip - (char *)&u
#define SNIP_OFFSET (char *)&u.pt_sigframe.dg_sigframe.sc_snip - (char *)&u
#define SFIP_OFFSET (char *)&u.pt_sigframe.dg_sigframe.sc_sfip - (char *)&u
#define SXIP_OFFSET ((char *)&u.pt_sigframe.dg_sigframe.sc_sxip - (char *)&u)
#define SNIP_OFFSET ((char *)&u.pt_sigframe.dg_sigframe.sc_snip - (char *)&u)
#define SFIP_OFFSET ((char *)&u.pt_sigframe.dg_sigframe.sc_sfip - (char *)&u)
#endif
extern int have_symbol_file_p();