diff options
author | Serge Pavlov <sepavloff@gmail.com> | 2023-11-13 19:16:29 +0700 |
---|---|---|
committer | Serge Pavlov <sepavloff@gmail.com> | 2023-11-13 19:20:34 +0700 |
commit | 93ae26331592f41bf2b1d10b048743d80c468385 (patch) | |
tree | 6d81e41608a919e345e4ce4d9b0ee9052bc42ee0 | |
parent | 8b73be5f57106348a622e36ad3aa0734c6038a8d (diff) | |
download | llvm-93ae26331592f41bf2b1d10b048743d80c468385.zip llvm-93ae26331592f41bf2b1d10b048743d80c468385.tar.gz llvm-93ae26331592f41bf2b1d10b048743d80c468385.tar.bz2 |
[clang] Run test on x86 only
The test Sema/PR69717.cpp fails on platforms that do not support
pragma float_control. So run this test on x86 only.
-rw-r--r-- | clang/test/Sema/PR69717.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/test/Sema/PR69717.cpp b/clang/test/Sema/PR69717.cpp index 3207092..42a87bd 100644 --- a/clang/test/Sema/PR69717.cpp +++ b/clang/test/Sema/PR69717.cpp @@ -1,4 +1,5 @@ // RUN: %clang_cc1 -verify -fsyntax-only %s +// REQUIRES: x86-registered-target // expected-no-diagnostics // Testcase for https://github.com/llvm/llvm-project/issues/69717 |