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
Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
gomp
/
dump-new-function.c
blob
2814260cf37e21691cac77d56a6f3d9a236b414d
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fopenmp -fdump-tree-gimple" } */
3
4
int
5
main
(
void
)
6
{
7
#pragma omp parallel
8
{
9
extern
void
foo
(
void
);
10
foo
();
11
}
12
return
0
;
13
}
14
15
/* Check that new function does not end up in gimple dump. */
16
/* { dg-final { scan-tree-dump-not "main\\._omp_fn\\.0" "gimple" } } */