diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1998-05-11 07:37:40 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1998-05-11 07:37:40 +0000 |
commit | 65194bc6596f263c76dd98ef82de7cf3b454a0b1 (patch) | |
tree | 48b37b3b35f0bf72275ca58f7ed060f81be402b3 /sys/arch/vax | |
parent | def182cd9e392c72c8f27deb434458b5821c19d3 (diff) |
strn?cmp defined in libsa, disable these here temporarily. We might want
them later as they are probably faster, being hand-assembled.
Diffstat (limited to 'sys/arch/vax')
-rw-r--r-- | sys/arch/vax/boot/str.s | 4 | ||||
-rw-r--r-- | sys/arch/vax/stand/str.s | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/sys/arch/vax/boot/str.s b/sys/arch/vax/boot/str.s index c2d4e083723..8b393d5ddb3 100644 --- a/sys/arch/vax/boot/str.s +++ b/sys/arch/vax/boot/str.s @@ -1,4 +1,4 @@ -/* $OpenBSD: str.s,v 1.3 1998/02/03 11:48:29 maja Exp $ */ +/* $OpenBSD: str.s,v 1.4 1998/05/11 07:37:39 niklas Exp $ */ /* $NetBSD: str.s,v 1.3 1997/03/15 13:04:30 ragge Exp $ */ /* * Copyright (c) 1996 Ludd, University of Lule}, Sweden. @@ -106,6 +106,7 @@ ENTRY(strlen, 0); subl2 4(ap), r0 ret +#if 0 ENTRY(strncmp, 0) movl 12(ap), r3 brb 5f @@ -129,3 +130,4 @@ ENTRY(strcmp, 0) 1: bgtr 3f mnegl r0, r0 3: ret +#endif diff --git a/sys/arch/vax/stand/str.s b/sys/arch/vax/stand/str.s index c2d4e083723..8b393d5ddb3 100644 --- a/sys/arch/vax/stand/str.s +++ b/sys/arch/vax/stand/str.s @@ -1,4 +1,4 @@ -/* $OpenBSD: str.s,v 1.3 1998/02/03 11:48:29 maja Exp $ */ +/* $OpenBSD: str.s,v 1.4 1998/05/11 07:37:39 niklas Exp $ */ /* $NetBSD: str.s,v 1.3 1997/03/15 13:04:30 ragge Exp $ */ /* * Copyright (c) 1996 Ludd, University of Lule}, Sweden. @@ -106,6 +106,7 @@ ENTRY(strlen, 0); subl2 4(ap), r0 ret +#if 0 ENTRY(strncmp, 0) movl 12(ap), r3 brb 5f @@ -129,3 +130,4 @@ ENTRY(strcmp, 0) 1: bgtr 3f mnegl r0, r0 3: ret +#endif |