diff options
-rw-r--r-- | test cases/common/204 function attributes/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test cases/common/204 function attributes/meson.build b/test cases/common/204 function attributes/meson.build index 1e93803..58ac7c8 100644 --- a/test cases/common/204 function attributes/meson.build +++ b/test cases/common/204 function attributes/meson.build @@ -19,7 +19,7 @@ project('gcc func attributes', ['c', 'cpp']) c = meson.get_compiler('c') cpp = meson.get_compiler('cpp') -expected_result = not ['msvc', 'clang-cl'].contains(c.get_id()) +expected_result = not ['msvc', 'clang-cl', 'intel-cl'].contains(c.get_id()) # Q: Why is ifunc not in this list or any of the below lists? # A: It's too damn hard to figure out if you actually support it, since it @@ -95,7 +95,7 @@ foreach a : ['dllexport', 'dllimport'] endforeach message('checking get_supported_function_attributes') -if not ['msvc', 'clang-cl'].contains(c.get_id()) +if not ['msvc', 'clang-cl', 'intel-cl'].contains(c.get_id()) multi_expected = attributes else multi_expected = [] |