diff options
author | Jakub Jelinek <jakub@redhat.com> | 2024-03-15 10:01:41 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2024-03-15 10:01:41 +0100 |
commit | 8ae7062bf4005c08b093828d40e2c9278e6f6d9c (patch) | |
tree | 3c5e816518b28d3f8f1f25863bface127403a960 | |
parent | 90b9872311ccb24685ba33b6ba6f374d50f03874 (diff) | |
download | gcc-8ae7062bf4005c08b093828d40e2c9278e6f6d9c.zip gcc-8ae7062bf4005c08b093828d40e2c9278e6f6d9c.tar.gz gcc-8ae7062bf4005c08b093828d40e2c9278e6f6d9c.tar.bz2 |
testsuite: Fix up pr104601.C for recent libstdc++ changes
r14-9478 added [[nodiscard]] to various <algorithm> APIs including find_if
the pr104601.C testcase uses. As it is an optimization bug fix testcase,
haven't tried to adjust the testcase to use the find_if result, but instead
have added -Wno-unused-result flag to quiet the warning.
2024-03-15 Jakub Jelinek <jakub@redhat.com>
* g++.dg/torture/pr104601.C: Add -Wno-unused-result to dg-options.
-rw-r--r-- | gcc/testsuite/g++.dg/torture/pr104601.C | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/g++.dg/torture/pr104601.C b/gcc/testsuite/g++.dg/torture/pr104601.C index 92ad73d..c8d4661 100644 --- a/gcc/testsuite/g++.dg/torture/pr104601.C +++ b/gcc/testsuite/g++.dg/torture/pr104601.C @@ -1,6 +1,6 @@ // PR tree-optimization/104601 // { dg-do run } -// { dg-options "-std=c++17" } +// { dg-options "-std=c++17 -Wno-unused-result" } #include <algorithm> #include <optional> |