aggregate.cc: Remove xfail.

2009-06-05  Benjamin Kosnik  <bkoz@redhat.com>

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

From-SVN: r148222
This commit is contained in:
Benjamin Kosnik 2009-06-05 18:37:00 +00:00 committed by Benjamin Kosnik
parent 16702e196e
commit ca462c38d1
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2009-06-05 Benjamin Kosnik <bkoz@redhat.com>
* testsuite/29_atomics/atomic_address/cons/aggregate.cc: Remove xfail.
2009-06-04 Benjamin Kosnik <bkoz@redhat.com>
* include/ext/throw_allocator.h: Rework.

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;
}