diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-03-24 16:52:42 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-03-24 16:52:42 +0000 |
commit | f8777bdaaccd944f0b3553ff14cdf9072124acf8 (patch) | |
tree | d194e3aec4d44ada11c8b12e846e591a74c00ae8 /sys/arch/pmax | |
parent | 9b96dfaa80ad0fb9968937addb7ab614508aeebc (diff) |
Use __asm in place of asm
Diffstat (limited to 'sys/arch/pmax')
-rw-r--r-- | sys/arch/pmax/include/profile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/pmax/include/profile.h b/sys/arch/pmax/include/profile.h index dc30bfdcf01..661183549e8 100644 --- a/sys/arch/pmax/include/profile.h +++ b/sys/arch/pmax/include/profile.h @@ -41,7 +41,7 @@ #define _MCOUNT_DECL static void __mcount #define MCOUNT \ - asm(".globl _mcount;" \ + __asm(".globl _mcount;" \ "_mcount:;" \ ".set noreorder;" \ ".set noat;" \ |