From e6a5daae7ec5318c3949432d92b7f674dab5241d Mon Sep 17 00:00:00 2001 From: Marek Polacek Date: Wed, 6 Jan 2021 12:15:36 -0500 Subject: [PATCH] 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. --- gcc/testsuite/g++.dg/warn/Wmismatched-dealloc.C | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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*); -- 2.30.2