aboutsummaryrefslogtreecommitdiff
path: root/tests/fp
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>2022-02-10 15:14:39 +0100
committerPhilippe Mathieu-Daudé <f4bug@amsat.org>2022-03-15 13:36:33 +0100
commit004900acbcde82d52d80404dea7f43ce5f8b78fb (patch)
tree1a2efc67c7a11b61cb97ff6dde51db2db814b5e9 /tests/fp
parente910c7d9bf8e981bb1b7458c4793c5aedee98850 (diff)
downloadqemu-004900acbcde82d52d80404dea7f43ce5f8b78fb.zip
qemu-004900acbcde82d52d80404dea7f43ce5f8b78fb.tar.gz
qemu-004900acbcde82d52d80404dea7f43ce5f8b78fb.tar.bz2
tests/fp/berkeley-testfloat-3: Ignore ignored #pragma directives
Since we already use -Wno-unknown-pragmas, we can also use -Wno-ignored-pragmas. This silences hundred of warnings using clang 13 on macOS Monterey: [409/771] Compiling C object tests/fp/libtestfloat.a.p/berkeley-testfloat-3_source_test_az_f128_rx.c.o ../tests/fp/berkeley-testfloat-3/source/test_az_f128_rx.c:49:14: warning: '#pragma FENV_ACCESS' is not supported on this target - ignored [-Wignored-pragmas] #pragma STDC FENV_ACCESS ON ^ 1 warning generated. Having: $ cc -v Apple clang version 13.0.0 (clang-1300.0.29.30) Reported-by: Roman Bolshakov <roman@roolebo.dev> Reviewed-by: Akihiko Odaki <akihiko.odaki@gmail.com> Tested-by: Akihiko Odaki <akihiko.odaki@gmail.com> Acked-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'tests/fp')
-rw-r--r--tests/fp/meson.build5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/fp/meson.build b/tests/fp/meson.build
index 59776a0..8bd0979 100644
--- a/tests/fp/meson.build
+++ b/tests/fp/meson.build
@@ -37,6 +37,11 @@ tfcflags = [
'-Wno-error',
]
+if cc.get_id() == 'clang'
+ # Clang does not support '#pragma STDC FENV_ACCESS'
+ tfcflags += [ '-Wno-ignored-pragmas' ]
+endif
+
tfgencases = [
tfdir / 'genCases_ui32.c',
tfdir / 'genCases_ui64.c',