gcc/libitm/testsuite/libitm.c/dropref.c
Aldy Hernandez 0a35513e4e Merge from transactional-memory branch.
From-SVN: r181154
2011-11-08 11:13:41 +00:00

13 lines
173 B
C

/* { dg-xfail-run-if "unsupported" { *-*-* } } */
#include <libitm.h>
char *pp;
int main()
{
__transaction_atomic {
_ITM_dropReferences (pp, 555);
}
return 0;
}