URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libgomp/] [testsuite/] [libgomp.c++/] [atomic-5.C] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do run }extern "C" void abort (void);template <typename T>voidfoo (){extern T v, x1, x2, x3, x4, x5, x6;#pragma omp atomic capturev = ++x1;if (!v)abort ();#pragma omp atomic capturev = x2++;if (v)abort ();#pragma omp atomic readv = x3;if (!v)abort ();#pragma omp atomic readv = x4;if (!v)abort ();#pragma omp atomic capture{ v = x5; x5 |= 1; }if (v)abort ();#pragma omp atomic capture{ x6 |= 1; v = x6; }if (!v)abort ();}template <typename T>voidbar (){extern T v, x1, x2;#pragma omp atomic writex1 = false;#pragma omp atomic writex2 = false;#pragma omp atomic capture{ ++x1; v = x1; }if (!v)abort ();#pragma omp atomic capture{ v = x2; x2++; }if (v)abort ();#pragma omp atomic writex1 = false;#pragma omp atomic writex2 = false;#pragma omp atomic capture{ x1++; v = x1; }if (!v)abort ();#pragma omp atomic capture{ v = x2; ++x2; }if (v)abort ();}bool v, x1, x2, x3, x4, x5, x6;intmain (){#pragma omp atomic writex3 = true;#pragma omp atomic writex4 = true;foo <bool> ();bar <bool> ();return 0;}
Go to most recent revision | Compare with Previous | Blame | View Log
