Skip to content

Commit 61b58e7

Browse files
committed
testsuite: Fix up test language requirements [PR94314]
With c++11 one gets: Excess errors: .../testsuite/g++.dg/pr94314-4.C:19:28: error: too many arguments to function 'void operator delete(void*)' because C++ sized deallocation is a C++14 feature. 2020-04-17 Jakub Jelinek <[email protected]> PR c++/94314 * g++.dg/pr94314-4.C: Require c++14 rather than c++11.
1 parent 5315e1d commit 61b58e7

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

gcc/testsuite/ChangeLog

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2020-04-17 Jakub Jelinek <[email protected]>
2+
3+
PR c++/94314
4+
* g++.dg/pr94314-4.C: Require c++14 rather than c++11.
5+
16
2020-04-16 Peter Bergner <[email protected]>
27

38
PR rtl-optimization/93974

gcc/testsuite/g++.dg/pr94314-4.C

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* PR c++/94314. */
2-
/* { dg-do run { target c++11 } } */
2+
/* { dg-do run { target c++14 } } */
33
/* { dg-options "-O2 -fdump-tree-cddce-details -fdelete-null-pointer-checks" } */
44

55
int count = 0;

0 commit comments

Comments
 (0)