mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 16:50:57 +00: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;
|
||
|
}
|