FB_FPMODE
- Source: https://www.freebasic.net/wiki/wikka.php?wakka=KeyPgDdfbfpmode
- Last revised: 2021-12-18
Intrinsic define set by the compiler
Syntax
` FB_FPMODE
`
Description
Defined as "fast" if SSE fast arithmetics is enabled, or "precise" otherwise.
Examples
start GeSHi
vb
#if __FB_FPMODE__ = "fast"
' ... instructions for using fast-mode math ...
#else
' ... instructions for using normal math ...
#endifend GeSHi
Differences from QB
- New to FreeBASIC
See also
Back to DocToc