PR testsuite/85483: Move aarch64/sve/vcond_1.c test to g++.dg/other/
[official-gcc.git] / libgomp / testsuite / libgomp.c / pr64824.c
blobb39675b9524585db23cbdcab2aa380dc6412729b
1 /* PR c/64824 */
2 /* { dg-do run } */
4 int
5 main ()
7 long long a;
8 long long b = 1LL;
9 int c = 3;
10 #pragma omp atomic capture
11 a = b = c << b;
12 if (b != 6LL || a != 6LL)
13 __builtin_abort ();
14 return 0;