__FB_X86__

Intrinsic define set by the compiler

Syntax
	__FB_X86__

Description
	Define created at compile time if the compilation target uses the X86 or 
	X86_64 CPU architecture, otherwise undefined.

Example
	#ifdef __FB_X86__
	  '...instructions for X86 OSes...
	#else
	  '...instructions for other OSes
	#endif 

Version
	* Since fbc 1.08.0

Differences from QB
	* New to FreeBASIC

See also
	* KeyPgDdfbarm__FB_ARM__
	* CompilerOpttargetCompiler Option: -target

