mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-03 07:07:20 +00:00
18 lines
296 B
C
18 lines
296 B
C
// Test that rolling back allocations works.
|
|
#include <stdlib.h>
|
|
|
|
void __attribute((transaction_pure,noinline)) dont_optimize(void* p)
|
|
{
|
|
*(volatile char *) p;
|
|
}
|
|
|
|
int main()
|
|
{
|
|
__transaction_atomic {
|
|
void *p = malloc (23);
|
|
dont_optimize (p);
|
|
__transaction_cancel;
|
|
}
|
|
return 0;
|
|
}
|