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

PR c++/41090
	* g++.dg/ext/label13.C: xfail on 32-bit hppa*-*-hpux*.

From-SVN: r161018
This commit is contained in:
John David Anglin 2010-06-19 00:28:18 +00:00 committed by John David Anglin
parent a310109a26
commit b3b5bf9468
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-06-18 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
PR c++/41090
* g++.dg/ext/label13.C: xfail on 32-bit hppa*-*-hpux*.
2010-06-18 Tobias Burnus <burnus@net-b.de>
PR fortran/44556

View File

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