summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorwollman <wollman@FreeBSD.org>1994-08-13 17:45:09 +0000
committerwollman <wollman@FreeBSD.org>1994-08-13 17:45:09 +0000
commitf4b3cc415bdf41b21119aade2766e1e85cd511fd (patch)
tree64225095a9a56bbc6d7d21ad476902a2a8fbeeb2 /sys
parent9daaac06d011638b2c9c77c569a63927ae68ed7b (diff)
downloadFreeBSD-src-f4b3cc415bdf41b21119aade2766e1e85cd511fd.zip
FreeBSD-src-f4b3cc415bdf41b21119aade2766e1e85cd511fd.tar.gz
Fix conditional-compilation mixup, pointed out by Paul Richards.
Diffstat (limited to 'sys')
-rw-r--r--sys/i386/i386/microtime.s4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/i386/i386/microtime.s b/sys/i386/i386/microtime.s
index 60083b2..07bbba6 100644
--- a/sys/i386/i386/microtime.s
+++ b/sys/i386/i386/microtime.s
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: Steve McCanne's microtime code
- * $Id: microtime.s,v 1.4 1994/05/02 09:44:20 sos Exp $
+ * $Id: microtime.s,v 1.5 1994/08/11 00:28:17 wollman Exp $
*/
#include "machine/asmacros.h"
@@ -65,7 +65,6 @@ ENTRY(microtime)
sti
jmp 4f
#endif /* Pentium code */
-#if defined(I386_CPU) || defined(I486_CPU)
0:
movl (%ebx), %edi # sec = time.tv_sec
movl 4(%ebx), %esi # usec = time.tv_usec
@@ -137,7 +136,6 @@ ENTRY(microtime)
movl $0, %edx # zero extend eax into edx for div
movl $1193, %ecx
idivl %ecx # convert to usecs: mult by 1000/1193
-#endif /* maybe i386 or i486 */
4:
addl %eax, %esi # add counter usecs to time.tv_usec
cmpl $1000000, %esi # carry in timeval?
OpenPOWER on IntegriCloud