FB_VECTORIZE
- Source: https://www.freebasic.net/wiki/wikka.php?wakka=KeyPgDdfbvectorize
- Last revised: 2016-02-10
Intrinsic define set by the compiler
Syntax
` FB_VECTORIZE
`
Description
Defined as the vectorisation level number set by the -vec command-line option.
Examples
start GeSHi
vb
#if __FB_VECTORIZE__ = 2
' ... instructions only for vectorization level 2...
#else
' ...
#endifend GeSHi
Differences from QB
- New to FreeBASIC
See also
Back to DocToc