diff options
author | 1998-02-22 00:34:52 +0000 | |
---|---|---|
committer | 1998-02-22 00:34:52 +0000 | |
commit | bcca31c8bf17d23155ad1dd4b9623346a7bb49b2 (patch) | |
tree | 8a5b47dedcbb7a0badafe1212ab73c993841a522 | |
parent | doc lp= better, doc filter time; hubertf (diff) | |
download | wireguard-openbsd-bcca31c8bf17d23155ad1dd4b9623346a7bb49b2.tar.xz wireguard-openbsd-bcca31c8bf17d23155ad1dd4b9623346a7bb49b2.zip |
style nits
-rw-r--r-- | sys/arch/i386/i386/locore.s | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/i386/i386/locore.s b/sys/arch/i386/i386/locore.s index e843bbccac1..ebbba2d43e3 100644 --- a/sys/arch/i386/i386/locore.s +++ b/sys/arch/i386/i386/locore.s @@ -1,4 +1,4 @@ -/* $OpenBSD: locore.s,v 1.40 1998/02/17 12:07:21 deraadt Exp $ */ +/* $OpenBSD: locore.s,v 1.41 1998/02/22 00:34:52 niklas Exp $ */ /* $NetBSD: locore.s,v 1.145 1996/05/03 19:41:19 christos Exp $ */ /*- @@ -402,10 +402,10 @@ try586: /* Use the `cpuid' instruction. */ /* Clear the BSS. */ movl $RELOC(_edata),%edi - movl $_end, %ecx - subl $_edata, %ecx - addl $3, %ecx - shrl $2, %ecx + movl $_end,%ecx + subl $_edata,%ecx + addl $3,%ecx + shrl $2,%ecx xorl %eax,%eax cld rep |