Go to the documentation of this file. 1#ifndef XTF_COMPILER_GCC_H
2#define XTF_COMPILER_GCC_H
4#define GCC_VER (__GNUC__ * 10000 + \
5 __GNUC_MINOR__ * 100 + \
14#ifndef __has_extension
16#define GCC_HAS_c_static_assert (GCC_VER >= 40600)
18#define __has_extension(x) GCC_HAS_ ## x
21#ifdef __GCC_ASM_FLAG_OUTPUTS__
22# define ASM_FLAG_OUT(yes, no) yes
24# define ASM_FLAG_OUT(yes, no) no