2018-10-23 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / tree-ssa / pr41961.C
blob229e7d4b93935cf0f48062699685da326eaaa87f
1 // { dg-do compile }
2 // { dg-require-effective-target pthread }
3 // { dg-options "-O3 -ftree-parallelize-loops=2" }
5 struct A
7     char c[17];
8       void foo();
9 };
11 void A::foo()
13     for (int i = 0; i < 17; ++i)
14           c[i] = 0;