__Fb_Fpu__
Intrinsic define set by the compiler
__FB_FPU__
Defined as "sse" if SSE floating point arithmetics is enabled, or "x87" otherwise.
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
' ... instructions only for SSE ...
#else
' ... instructions not for SSE ...
#endif
Differences from QB
- New to FreeBASIC
See also