From: Marek Polacek Date: Wed, 6 Jan 2021 17:15:36 +0000 (-0500) Subject: c++: Fix g++.dg/warn/Wmismatched-dealloc.C for C++11 [PR98566] X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e6a5daae7ec5318c3949432d92b7f674dab5241d;p=gcc.git c++: Fix g++.dg/warn/Wmismatched-dealloc.C for C++11 [PR98566] C++ sized deallocation only came in C++14, so this test wasn't working properly in C++11, which isn't tested by default. Fixed thus by constraining the dg-errors to C++14 only. gcc/testsuite/ChangeLog: PR testsuite/98566 * g++.dg/warn/Wmismatched-dealloc.C: Use target c++14 in dg-error. --- diff --git a/gcc/testsuite/g++.dg/warn/Wmismatched-dealloc.C b/gcc/testsuite/g++.dg/warn/Wmismatched-dealloc.C index 682db6f02cb..3072e240e28 100644 --- a/gcc/testsuite/g++.dg/warn/Wmismatched-dealloc.C +++ b/gcc/testsuite/g++.dg/warn/Wmismatched-dealloc.C @@ -12,9 +12,9 @@ void* A (mydealloc, 2) myalloc (void*); void* A (operator delete, 1) - bad_new (size_t); // { dg-error "attribute argument 1 is ambiguous" } + bad_new (size_t); // { dg-error "attribute argument 1 is ambiguous" "" { target c++14 } } void* A (operator delete[], 1) - bad_array_new (size_t); // { dg-error "attribute argument 1 is ambiguous" } + bad_array_new (size_t); // { dg-error "attribute argument 1 is ambiguous" "" { target c++14 } } void my_delete (const char*, void*); void my_array_delete (const char*, void*);