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
LWG 3035. std::allocator's constructors should be constexpr
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
gomp
/
pr27328.c
blob
afde738a725d2f9d804b19fca7806d4ddc6af38d
1
/* PR middle-end/27328 */
2
/* { dg-do compile } */
3
4
extern
void
baz
(
void
)
__attribute__
((
noreturn
));
5
6
void
7
foo
(
void
)
8
{
9
#pragma omp parallel
10
for
(;;)
11
;
12
}
13
14
void
15
bar
(
void
)
16
{
17
#pragma omp parallel
18
baz
();
19
}