__Fb_Fpmode__
Intrinsic define set by the compiler
__FB_FPMODE__
Defined as "fast" if SSE fast arithmetics is enabled, or "precise" otherwise.
Syntax
__FB_FPMODE__
Description
Defined as "fast" if SSE fast arithmetics is enabled, or "precise" otherwise.
Example
#if __FB_FPMODE__ = "fast"
' ... instructions for using fast-mode math ...
#else
' ... instructions for using normal math ...
#endif
' ... instructions for using fast-mode math ...
#else
' ... instructions for using normal math ...
#endif
Differences from QB
- New to FreeBASIC
See also