diff options
Diffstat (limited to 'test/support/test_macros.h')
-rw-r--r-- | test/support/test_macros.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/test/support/test_macros.h b/test/support/test_macros.h index 46fcb66fecfc..6b573d40fe68 100644 --- a/test/support/test_macros.h +++ b/test/support/test_macros.h @@ -52,10 +52,12 @@ #define TEST_HAS_BUILTIN_IDENTIFIER(X) 0 #endif -#if defined(__clang__) -#define TEST_COMPILER_CLANG +#if defined(__EDG__) +# define TEST_COMPILER_EDG +#elif defined(__clang__) +# define TEST_COMPILER_CLANG # if defined(__apple_build_version__) -# define TEST_COMPILER_APPLE_CLANG +# define TEST_COMPILER_APPLE_CLANG # endif #elif defined(_MSC_VER) # define TEST_COMPILER_C1XX |