aggregate.cc: Remove xfail.

2009-07-13  Benjamin Kosnik  <bkoz@redhat.com>

	* testsuite/29_atomics/atomic_address/cons/aggregate.cc: Remove xfail.

From-SVN: r149597
This commit is contained in:
Benjamin Kosnik 2009-07-13 21:31:10 +00:00 committed by Benjamin Kosnik
parent e86464534f
commit 6023e52fdf
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2009-07-13 Benjamin Kosnik <bkoz@redhat.com>
* testsuite/29_atomics/atomic_address/cons/aggregate.cc: Remove xfail.
2009-06-30 Paolo Carlini <paolo.carlini@oracle.com>
PR libstdc++/40600

View File

@ -1,5 +1,5 @@
// { dg-options "-std=gnu++0x" }
// { dg-do compile { xfail *-*-* } }
// { dg-do compile }
// Copyright (C) 2008, 2009 Free Software Foundation, Inc.
//
@ -23,6 +23,6 @@
int main()
{
std::atomic_address a = { { NULL } }; // { dg-excess-errors "braces around" }
std::atomic_address a = { { NULL } };
return 0;
}