Commit 1f53a8e6 by Aldy Hernandez Committed by Aldy Hernandez

re PR libitm/51171 (XFAIL: libitm.c/reentrant.c execution test)

        PR other/51171
        * testsuite/libitm.c/reentrant.c: Remove xfail.
        (thread): Pass x to pure().

From-SVN: r182911
parent 6ad024b4
2012-01-05 Aldy Hernandez <aldyh@redhat.com>
PR other/51171
* testsuite/libitm.c/reentrant.c: Remove xfail.
(thread): Pass x to pure().
2011-12-24 Torvald Riegel <triegel@redhat.com>
* beginend.cc (GTM::gtm_thread::trycommit): Don't enforce
......
/* { dg-do run { xfail *-*-* } }
/* { dg-do run } */
/* { dg-options "-pthread" } */
/* Tests that new transactions can be started from both transaction_pure and
......@@ -36,7 +36,7 @@ int __attribute__((transaction_unsafe)) unsafe(int i)
static void *thread (void *dummy __attribute__((unused)))
{
__transaction_atomic {
pure(1);
pure(x);
}
__transaction_relaxed {
unsafe(1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment