-
Notifications
You must be signed in to change notification settings - Fork 15.2k
[clang] fix #161765 test triple dependency #161769
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@llvm/pr-subscribers-clang Author: Matheus Izvekov (mizvekov) ChangesFixes the new test introduced in #161765, so that it always uses a triple which supports floating point exceptions. Otherwise, some post-commit bots fail. Full diff: https://github.com/llvm/llvm-project/pull/161769.diff 1 Files Affected:
diff --git a/clang/test/SemaTemplate/GH161657.cpp b/clang/test/SemaTemplate/GH161657.cpp
index 6ec793115db12..5ad4dde855898 100644
--- a/clang/test/SemaTemplate/GH161657.cpp
+++ b/clang/test/SemaTemplate/GH161657.cpp
@@ -1,4 +1,4 @@
-// RUN: %clang_cc1 -fsyntax-only -std=c++20 -ffp-exception-behavior=strict -verify %s
+// RUN: %clang_cc1 -triple=x86_64 -fsyntax-only -std=c++20 -ffp-exception-behavior=strict -verify %s
// expected-no-diagnostics
template <class T> struct S {
|
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/141/builds/11983 Here is the relevant piece of the build log for the reference
|
Fixes the new test introduced in llvm#161765, so that it always uses a triple which supports floating point exceptions. Otherwise, some post-commit bots fail.
Fixes the new test introduced in #161765, so that it always uses a triple which supports floating point exceptions.
Otherwise, some post-commit bots fail.