Use "__asm" instead of "asm" to pacify lint.

This commit is contained in:
kristerw 2002-12-29 14:41:29 +00:00
parent d320ba3418
commit 9d1bcdf947
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: fpu.c,v 1.16 2001/02/03 14:30:42 tsutsui Exp $ */
/* $NetBSD: fpu.c,v 1.17 2002/12/29 14:41:29 kristerw Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@ -105,7 +105,7 @@ fpu_probe()
* so we can determine which we have by
* examining the size of the FP state frame.
*/
asm("fnop");
__asm("fnop");
nofault = NULL;
@ -113,7 +113,7 @@ fpu_probe()
* have if this will. We save the state in order to get the
* size of the frame.
*/
asm("fsave %0@" : : "a" (&fpframe) : "memory");
__asm("fsave %0@" : : "a" (&fpframe) : "memory");
b = fpframe.fpf_fsize;