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 <lambo...@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