blob: 8c65508656ae49cd141712306d0ea4a9e9ae89c9 [file] [log] [blame]
// { dg-do compile }
#include <libitm.h>
static void throwit() {
throw 1;
}
void tranfunc() {
__transaction_atomic {
throwit();
}
}