diff options
author | 2001-06-27 04:16:37 +0000 | |
---|---|---|
committer | 2001-06-27 04:16:37 +0000 | |
commit | 656f077bcd00cda26276af6864c3354fc0cae679 (patch) | |
tree | 61a80624e1d5b4fa45015fb8c1edd8ef17b7792a | |
parent | implement 64 bit swap and fix constraints on others (diff) | |
download | wireguard-openbsd-656f077bcd00cda26276af6864c3354fc0cae679.tar.xz wireguard-openbsd-656f077bcd00cda26276af6864c3354fc0cae679.zip |
fix constraint, no idea how did it work
-rw-r--r-- | sys/arch/i386/include/profile.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/include/profile.h b/sys/arch/i386/include/profile.h index 5e2fb1e6160..d572e473ec4 100644 --- a/sys/arch/i386/include/profile.h +++ b/sys/arch/i386/include/profile.h @@ -1,4 +1,4 @@ -/* $OpenBSD: profile.h,v 1.4 2000/08/05 22:07:32 niklas Exp $ */ +/* $OpenBSD: profile.h,v 1.5 2001/06/27 04:16:37 mickey Exp $ */ /* $NetBSD: profile.h,v 1.6 1995/03/28 18:17:08 jtc Exp $ */ /* @@ -54,7 +54,7 @@ mcount() \ /* \ * frompcindex = pc pushed by call into self. \ */ \ - __asm("movl (%%ebp),%0;movl 4(%0),%0" : "=r" (frompcindex)); \ + __asm("movl (%%ebp),%0;movl 4(%0),%0" : "+r" (frompcindex)); \ _mcount(frompcindex, selfpc); \ } |