__Fb_Fpu__

FreeBASIC

__Fb_Fpu__
 
Intrinsic define set by the compiler

Syntax

__FB_FPU__

Description

Defined as "sse" if SSE floating point arithmetics is enabled, or "x87" otherwise.

Example

#if __FB_FPU__ = "sse"
  ' ... instructions only for SSE ...
#else
  ' ... instructions not for SSE ...
#endif


Differences from QB

  • New to FreeBASIC

See also