re PR c++/41090 (Using static label reference in c++ class constructor produces wrong code)

PR c++/41090
	* g++.dg/ext/label13.C: Update to not expect failures.

From-SVN: r206252
This commit is contained in:
Mike Stump 2013-12-30 19:34:53 +00:00 committed by Mike Stump
parent 2ef747bcac
commit 57664fed58
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2013-12-30 Mike Stump <mikestump@comcast.net>
PR c++/41090
* g++.dg/ext/label13.C: Update to not expect failures.
2013-12-30 Janus Weil <janus@gcc.gnu.org>
PR fortran/58998

View file

@ -8,7 +8,7 @@ struct C
C();
};
C::C() // { dg-bogus "can never be copied" "" { xfail { { *-apple-darwin* } || { hppa*-*-hpux* && { ! lp64 } } } } }
C::C() // { dg-bogus "can never be copied" "" }
{
static void *labelref = &&label;
goto *labelref;