mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-12-01 07:44:05 +08:00
13 lines
173 B
C
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;
|
||
|
}
|