re PR c++/41090 (Using static label reference in c++ class constructor produces wrong...
authorMike Stump <mikestump@comcast.net>
Mon, 30 Dec 2013 19:34:53 +0000 (19:34 +0000)
committerMike Stump <mrs@gcc.gnu.org>
Mon, 30 Dec 2013 19:34:53 +0000 (19:34 +0000)
PR c++/41090
* g++.dg/ext/label13.C: Update to not expect failures.

From-SVN: r206252

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/ext/label13.C

index 8f94e49..bd670eb 100644 (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
index 6551c0a..0887d46 100644 (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;