Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/lib/libc/arch/arm32/gen Adjust for changes in asm.h.
details: https://anonhg.NetBSD.org/src/rev/be2882dcdd54
branches: trunk
changeset: 500452:be2882dcdd54
user: mycroft <mycroft%NetBSD.org@localhost>
date: Tue Dec 12 07:35:39 2000 +0000
description:
Adjust for changes in asm.h.
diffstat:
lib/libc/arch/arm32/gen/byte_swap_2.S | 10 ++++------
lib/libc/arch/arm32/gen/byte_swap_4.S | 10 ++++------
2 files changed, 8 insertions(+), 12 deletions(-)
diffs (48 lines):
diff -r 98000e379832 -r be2882dcdd54 lib/libc/arch/arm32/gen/byte_swap_2.S
--- a/lib/libc/arch/arm32/gen/byte_swap_2.S Tue Dec 12 07:35:25 2000 +0000
+++ b/lib/libc/arch/arm32/gen/byte_swap_2.S Tue Dec 12 07:35:39 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: byte_swap_2.S,v 1.2 1999/01/22 09:13:17 mycroft Exp $ */
+/* $NetBSD: byte_swap_2.S,v 1.3 2000/12/12 07:35:39 mycroft Exp $ */
/*-
* Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -38,11 +38,9 @@
#include <machine/asm.h>
-_BEGIN_ENTRY;
-_ENTRY(_C_FUNC(__bswap16));
-_ENTRY(_C_FUNC(ntohs));
-_ENTRY(_C_FUNC(htons));
-_END_ENTRY
+ENTRY(__bswap16)
+ALTENTRY(ntohs)
+ALTENTRY(htons)
and r1, r0, #0xFF00
mov r0, r0, lsl #8
orr r0, r0, r1, lsr #8
diff -r 98000e379832 -r be2882dcdd54 lib/libc/arch/arm32/gen/byte_swap_4.S
--- a/lib/libc/arch/arm32/gen/byte_swap_4.S Tue Dec 12 07:35:25 2000 +0000
+++ b/lib/libc/arch/arm32/gen/byte_swap_4.S Tue Dec 12 07:35:39 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: byte_swap_4.S,v 1.1 1999/01/15 13:31:17 bouyer Exp $ */
+/* $NetBSD: byte_swap_4.S,v 1.2 2000/12/12 07:35:40 mycroft Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
@@ -38,11 +38,9 @@
#include <machine/asm.h>
-_BEGIN_ENTRY;
-_ENTRY(_C_FUNC(__bswap32));
-_ENTRY(_C_FUNC(ntohl));
-_ENTRY(_C_FUNC(htonl));
-_END_ENTRY
+ENTRY(__bswap32)
+ALTENTRY(ntohl)
+ALTENTRY(htonl)
eor r1, r0, r0, ror #16
bic r1, r1, #0x00FF0000
mov r0, r0, ror #8
Home |
Main Index |
Thread Index |
Old Index