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
Require target lra in gcc.dg/pr108095.c
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
gomp
/
num-threads-1.c
blob
f792ef96bcde2d9bf7c1a5891ad8d236d8230938
1
/* { dg-do compile } */
2
3
extern
void
bar
(
void
);
4
void
foo
(
void
)
5
{
6
#pragma omp parallel num_threads (0)
/* { dg-warning "must be positive" } */
7
{
8
bar
();
9
}
10
}