Subject: NetBSD master CVS tree commits
To: None <source-changes@NetBSD.ORG>
From: None <source@NetBSD.ORG>
List: source-changes
Date: 01/04/1997 03:30:02
jtc
Fri Jan  3 19:21:21 PST 1997
Update of /cvsroot/src/lib/libc/arch/m68k/string
In directory netbsd1:/var/slash-tmp/cvs-serv300

Modified Files:
	bcmp.S bcopy.S bzero.S index.S rindex.S strcat.S strcmp.S 
	strcpy.S strlen.S strncmp.S strncpy.S swab.S 
Log Message:
Use jCC instead of bCC, as the assembler will then use the (smaller,
faster) byte-displacement form of the instruction if the offset will
fit.  This happens to be all occurances in this case, so I could have
used bCCs.  However, a quick survey of the rest of NetBSD's m68k code
showed that jCC was used in similar cases.  I did the same to be
consistant.


jtc
Fri Jan  3 19:26:29 PST 1997
Update of /cvsroot/src/lib/libc/arch/m68k/string
In directory netbsd1:/var/slash-tmp/cvs-serv2110

Modified Files:
	bcmp.S bcopy.S bzero.S ffs.S index.S memcmp.S memset.S 
	rindex.S strcat.S strcmp.S strcpy.S strlen.S strncmp.S 
	strncpy.S swab.S 
Log Message:
#include <machine/asm.h> instead of "DEFS.h"