Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/lib/libpthread/arch/i386 use explicit "l" suffixes. (eg. le...
details: https://anonhg.NetBSD.org/src/rev/97f9d4e1cea7
branches: trunk
changeset: 554607:97f9d4e1cea7
user: yamt <yamt%NetBSD.org@localhost>
date: Thu Oct 30 13:56:37 2003 +0000
description:
use explicit "l" suffixes. (eg. lea -> leal)
diffstat:
lib/libpthread/arch/i386/_getsetc.S | 4 ++--
lib/libpthread/arch/i386/pthread_switch.S | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diffs (36 lines):
diff -r ac7787f252ee -r 97f9d4e1cea7 lib/libpthread/arch/i386/_getsetc.S
--- a/lib/libpthread/arch/i386/_getsetc.S Thu Oct 30 13:52:23 2003 +0000
+++ b/lib/libpthread/arch/i386/_getsetc.S Thu Oct 30 13:56:37 2003 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: _getsetc.S,v 1.2 2003/01/18 10:34:18 thorpej Exp $ */
+/* $NetBSD: _getsetc.S,v 1.3 2003/10/30 13:56:37 yamt Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -51,7 +51,7 @@
#define SETC \
movl UC_FLAGS(%ecx), %eax ; \
- bt $_UC_USER_BIT, %eax ; \
+ btl $_UC_USER_BIT, %eax ; \
jnc 1f ; \
; \
FPLOAD(%ecx) ; \
diff -r ac7787f252ee -r 97f9d4e1cea7 lib/libpthread/arch/i386/pthread_switch.S
--- a/lib/libpthread/arch/i386/pthread_switch.S Thu Oct 30 13:52:23 2003 +0000
+++ b/lib/libpthread/arch/i386/pthread_switch.S Thu Oct 30 13:56:37 2003 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: pthread_switch.S,v 1.6 2003/09/07 14:47:48 cl Exp $ */
+/* $NetBSD: pthread_switch.S,v 1.7 2003/10/30 13:56:37 yamt Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -104,7 +104,7 @@
cmpl $0, %esi ; \
jne 1f ; \
movl PT_UC(%ecx), %esi ; \
-1: lea (-STACKSPACE)(%esi), %esp ; \
+1: leal (-STACKSPACE)(%esi), %esp ; \
movl $0, PT_TRAPUC(%ecx)
/*
Home |
Main Index |
Thread Index |
Old Index