summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2001-06-27 04:16:38 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2001-06-27 04:16:38 +0000
commitb22d2a5b6097f6f0309a013c6e863b8bd00ce83e (patch)
tree7d98ce0ce98362a794e8d9b5cf2d4a1ed63a67c5 /sys/arch
parentb427547ecc336276f3796fe4e677b9582a80c7a5 (diff)
fix constraint, no idea how did it work
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/i386/include/profile.h4
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); \
}