Projet_SETI_RISC-V/riscv-gnu-toolchain/gcc/libitm/testsuite/libitm.c/dropref.c
2023-03-06 14:48:14 +01:00

12 lines
173 B
C

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