summaryrefslogtreecommitdiff
path: root/sys/arch/mvme88k
diff options
context:
space:
mode:
authorThorsten Lockert <tholo@cvs.openbsd.org>1996-03-24 16:52:42 +0000
committerThorsten Lockert <tholo@cvs.openbsd.org>1996-03-24 16:52:42 +0000
commitf8777bdaaccd944f0b3553ff14cdf9072124acf8 (patch)
treed194e3aec4d44ada11c8b12e846e591a74c00ae8 /sys/arch/mvme88k
parent9b96dfaa80ad0fb9968937addb7ab614508aeebc (diff)
Use __asm in place of asm
Diffstat (limited to 'sys/arch/mvme88k')
-rw-r--r--sys/arch/mvme88k/include/profile.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/mvme88k/include/profile.h b/sys/arch/mvme88k/include/profile.h
index 429d42d3c6b..c6203ab7424 100644
--- a/sys/arch/mvme88k/include/profile.h
+++ b/sys/arch/mvme88k/include/profile.h
@@ -31,13 +31,13 @@
* SUCH DAMAGE.
*
* from: @(#)profile.h 8.1 (Berkeley) 6/11/93
- * $Id: profile.h,v 1.1 1995/10/18 10:54:24 deraadt Exp $
+ * $Id: profile.h,v 1.2 1996/03/24 16:52:34 tholo Exp $
*/
#define _MCOUNT_DECL static inline void _mcount
#define MCOUNT \
-extern void mcount() asm("mcount"); \
+extern void mcount() __asm("mcount"); \
void \
mcount() \
{ \
@@ -48,7 +48,7 @@ mcount() \
* \
* selfret = ret pushed by mcount call \
*/ \
- asm volatile("ld %0,r31,36" : "=r" (selfret)); \
+ __asm volatile("ld %0,r31,36" : "=r" (selfret)); \
/* \
* callerret = ret pushed by call into self. \
*/ \
@@ -56,8 +56,8 @@ mcount() \
* This may not be right. It all depends on where the \
* caller stores the return address. XXX \
*/ \
- asm volatile("addu r10,r31,48"); \
- asm volatile("ld %0,r10,36" : "=r" (callerret)); \
+ __asm volatile("addu r10,r31,48"); \
+ __asm volatile("ld %0,r10,36" : "=r" (callerret)); \
_mcount(callerret, selfret); \
}