From: ro Date: Thu, 25 Feb 2016 12:47:28 +0000 (+0000) Subject: Require init_priority support for g++.dg/ext/attr-constructor1.C X-Git-Tag: upstream/6.1~893 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=03331e69d5d0da465419d0f61666343dc11c97a2;p=platform%2Fupstream%2Flinaro-gcc.git Require init_priority support for g++.dg/ext/attr-constructor1.C * g++.dg/ext/attr-constructor1.C: Require init_priority support. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@233713 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 7ce00d3..9dc7f18 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2016-02-25 Rainer Orth + + * g++.dg/ext/attr-constructor1.C: Require init_priority support. + 2016-02-25 Jakub Jelinek PR rtl-optimization/69896 diff --git a/gcc/testsuite/g++.dg/ext/attr-constructor1.C b/gcc/testsuite/g++.dg/ext/attr-constructor1.C index ed522d3..9321871 100644 --- a/gcc/testsuite/g++.dg/ext/attr-constructor1.C +++ b/gcc/testsuite/g++.dg/ext/attr-constructor1.C @@ -1,5 +1,5 @@ // PR c++/59281 -// { dg-do compile { target c++11 } } +// { dg-do compile { target { c++11 && init_priority } } } enum class E : int { prio = 666 }; void f (int) __attribute__((constructor(E::prio))); // { dg-error "integer" }