repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
gomp
/
pr33333.C
blob
ea5079b5e39ec043bcb4d0cb53971629573424a6
1
// PR middle-end/33333
2
// { dg-do compile }
3
4
struct A
5
{
6
int n;
7
void foo ();
8
};
9
10
void
11
A::foo ()
12
{
13
try
14
{
15
#pragma omp parallel for
16
for (int i = 0; i < n; ++i)
17
;
18
} catch (...) {}
19
}