1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-14 14:55:41 +00:00

Hide inline assembly if lint is defined.

This commit is contained in:
Poul-Henning Kamp 2002-10-20 17:30:30 +00:00
parent a67ee49294
commit 218565dc75
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=105534
3 changed files with 3 additions and 3 deletions

View File

@ -106,7 +106,7 @@
#define NPX_DISABLE_I586_OPTIMIZED_COPYIO (1 << 2)
#define NPX_PREFER_EMULATOR (1 << 3)
#ifdef __GNUC__
#if defined(__GNUC__) && !defined(lint)
#define fldcw(addr) __asm("fldcw %0" : : "m" (*(addr)))
#define fnclex() __asm("fnclex")

View File

@ -106,7 +106,7 @@
#define NPX_DISABLE_I586_OPTIMIZED_COPYIO (1 << 2)
#define NPX_PREFER_EMULATOR (1 << 3)
#ifdef __GNUC__
#if defined(__GNUC__) && !defined(lint)
#define fldcw(addr) __asm("fldcw %0" : : "m" (*(addr)))
#define fnclex() __asm("fnclex")

View File

@ -106,7 +106,7 @@
#define NPX_DISABLE_I586_OPTIMIZED_COPYIO (1 << 2)
#define NPX_PREFER_EMULATOR (1 << 3)
#ifdef __GNUC__
#if defined(__GNUC__) && !defined(lint)
#define fldcw(addr) __asm("fldcw %0" : : "m" (*(addr)))
#define fnclex() __asm("fnclex")