summaryrefslogtreecommitdiff
path: root/test cases
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2018-09-28 10:08:14 -0700
committerDylan Baker <dylan@pnwbakers.com>2018-11-15 18:42:25 -0800
commit21a7528b2fe3176445d918e921fe374acafb6de2 (patch)
tree26420aafc5a91ac3f30c1d35acc1f9f38d1edeb5 /test cases
parent80f8c9930c1cca060dceb0f79d58823e66ea63e3 (diff)
downloadmeson-21a7528b2fe3176445d918e921fe374acafb6de2.tar.gz
compilers/c_function_attributes: fix for ICC
ICC doesn't like the extra set of parens, GCC 8.2.1 and Clang 6.0.1 don't have a problem with this.
Diffstat (limited to 'test cases')
-rw-r--r--test cases/common/204 function attributes/meson.build4
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 c906b4918..1e9380302 100644
--- a/test cases/common/204 function attributes/meson.build
+++ b/test cases/common/204 function attributes/meson.build
@@ -63,7 +63,7 @@ if host_machine.system() != 'darwin'
attributes += 'visibility'
endif
-if c.get_id() == 'gcc'
+if ['gcc', 'intel'].contains(c.get_id())
# not supported by clang as of 5.0.0 (at least up to 6.0.1)
attributes += 'artificial'
attributes += 'error'
@@ -73,7 +73,7 @@ if c.get_id() == 'gcc'
attributes += 'optimize'
attributes += 'warning'
- if c.version().version_compare('>= 7.0.0')
+ if c.get_id() == 'gcc' and c.version().version_compare('>= 7.0.0')
attributes += 'fallthrough'
endif
endif