From: Jakub Jelinek Date: Fri, 15 Mar 2024 09:01:41 +0000 (+0100) Subject: testsuite: Fix up pr104601.C for recent libstdc++ changes X-Git-Tag: basepoints/gcc-15~648 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8ae7062bf4005c08b093828d40e2c9278e6f6d9c;p=thirdparty%2Fgcc.git testsuite: Fix up pr104601.C for recent libstdc++ changes r14-9478 added [[nodiscard]] to various 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 * g++.dg/torture/pr104601.C: Add -Wno-unused-result to dg-options. --- diff --git a/gcc/testsuite/g++.dg/torture/pr104601.C b/gcc/testsuite/g++.dg/torture/pr104601.C index 92ad73d47e92..c8d4661e86d4 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 #include