FB_SSE
- Source: https://www.freebasic.net/wiki/wikka.php?wakka=KeyPgDdfbsse
- Last revised: 2016-02-10
Intrinsic define set by the compiler
Syntax
` FB_SSE
`
Description
Define without a value created at compile time if SSE floating point arithmetics is enabled.
Examples
start GeSHi
vb
#ifdef __FB_SSE__
' ... instructions only for SSE ...
#else
' ... instructions not for SSE ...
#endifend GeSHi
Differences from QB
- New to FreeBASIC
See also
__FB_FPU__- Compiler Option: -fpu
Back to DocToc