From: Sam James Date: Fri, 25 Oct 2024 19:55:39 +0000 (+0100) Subject: testsuite: lto: fix pr62026 test X-Git-Tag: basepoints/gcc-16~4866 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=908b306909f10d7592a0ef611cc77b5720f07fa7;p=thirdparty%2Fgcc.git testsuite: lto: fix pr62026 test This failure was hidden until we started to run the test by fixing the filename earlier: pass -Wno-return-type. gcc/testsuite/ChangeLog: PR lto/62026 * g++.dg/lto/pr62026_0.C: Pass -Wno-return-type. --- diff --git a/gcc/testsuite/g++.dg/lto/pr62026_0.C b/gcc/testsuite/g++.dg/lto/pr62026_0.C index 0432e907f56f..d6445ee9b4d8 100644 --- a/gcc/testsuite/g++.dg/lto/pr62026_0.C +++ b/gcc/testsuite/g++.dg/lto/pr62026_0.C @@ -1,5 +1,5 @@ // { dg-lto-do link } -// { dg-lto-options {{-flto -O3 -r}} } +// { dg-lto-options {{-flto -O3 -r -Wno-return-type}} } class C; class F { virtual C m_fn1();