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
See also