* netbsd386.c (N_SET_FLAGS): Don't nuke the machine id field.

From sukes@glue.umd.edu (Tasuki Hirata).
This commit is contained in:
David MacKenzie 1994-03-17 00:45:26 +00:00
parent 614a3211d4
commit ae6710bc98
2 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,14 @@
Wed Mar 16 16:43:33 1994 David J. Mackenzie (djm@thepub.cygnus.com)
* netbsd386.c (N_SET_FLAGS): Don't nuke the machine id field.
From sukes@glue.umd.edu (Tasuki Hirata).
Wed Mar 16 07:55:54 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* aoutf1.h (4 places): Use a simple #if on ARCH_SIZE, rather than
all that convoluted stuff with NAME, CAT3, etc. The convoluted
stuff broke for SunOS4 /bin/cc (due to DEFUN elimination, I guess).
Wed Mar 16 00:02:05 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
* som.c (som_prep_for_fixups): Detect section symbols based

View File

@ -53,6 +53,9 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
(((exec).a_info & ~(0x3ff<<16)) | (((machtype)&0xff) << 16)))
#define N_SET_FLAGS(exec, flags) \
((exec).a_info = ((exec).a_info & 0xffff) | (flags & 0xffff))
#define N_SET_FLAGS(exec, flags) \
((exec).a_info = \
(((exec).a_info & ~(0x3f<<26)) | (((flags)&0x3f) << 26)))
#include "bfd.h"
#include "sysdep.h"