public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* fix testsuite/g++.dg/init/new26.C for C++-14 and later
@ 2020-12-22 21:40 Alexandre Oliva
  2020-12-29 19:19 ` Mike Stump
  0 siblings, 1 reply; 2+ messages in thread
From: Alexandre Oliva @ 2020-12-22 21:40 UTC (permalink / raw)
  To: gcc-patches; +Cc: Jerome Lambourg


This test fails during the execution on VxWorks 7 when using
C++-14 and C++-17.

Regstrapped on x86_64-linux-gnu, and tested with -x-arm-wrs-vxworks7r2.
Ok to install?


from Jerome Lambourg <lambourg@adacore.com>
for  gcc/testsuite/ChangeLog

	* g++.dg/init/new26.C: Fix overriding of the delete operator
	for c++14 profile.
---
 gcc/testsuite/g++.dg/init/new26.C |    4 ++++
 1 file changed, 4 insertions(+)

diff --git a/gcc/testsuite/g++.dg/init/new26.C b/gcc/testsuite/g++.dg/init/new26.C
index 541de3058e10a..75bdcb15074d5 100644
--- a/gcc/testsuite/g++.dg/init/new26.C
+++ b/gcc/testsuite/g++.dg/init/new26.C
@@ -16,8 +16,12 @@ inline void *operator new(__SIZE_TYPE__)
   return p;
 }
 
+// C++11 and earlier
 inline void operator delete (void*) {}
 
+// C++14 profile
+inline void operator delete (void*, __SIZE_TYPE__) {}
+
 int * __attribute__((noinline)) doit(int n)
 {
   float *q;

-- 
Alexandre Oliva, happy hacker  https://FSFLA.org/blogs/lxo/
   Free Software Activist         GNU Toolchain Engineer
        Vim, Vi, Voltei pro Emacs -- GNUlius Caesar

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: fix testsuite/g++.dg/init/new26.C for C++-14 and later
  2020-12-22 21:40 fix testsuite/g++.dg/init/new26.C for C++-14 and later Alexandre Oliva
@ 2020-12-29 19:19 ` Mike Stump
  0 siblings, 0 replies; 2+ messages in thread
From: Mike Stump @ 2020-12-29 19:19 UTC (permalink / raw)
  To: Alexandre Oliva; +Cc: gcc-patches, Jerome Lambourg

On Dec 22, 2020, at 1:40 PM, Alexandre Oliva <oliva@adacore.com> wrote:
> 
> This test fails during the execution on VxWorks 7 when using
> C++-14 and C++-17.
> 
> Regstrapped on x86_64-linux-gnu, and tested with -x-arm-wrs-vxworks7r2.
> Ok to install?

Ok.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-12-29 19:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-22 21:40 fix testsuite/g++.dg/init/new26.C for C++-14 and later Alexandre Oliva
2020-12-29 19:19 ` Mike Stump

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).