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
Tighten condition in vect/pr85586.c (PR 85654)
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
vect-simd-clone-10a.c
blob
771b38ef1a0bc361a578a95577f29546833c812b
1
/* { dg-do compile } */
2
3
#include
"vect-simd-clone-10.h"
4
5
#pragma omp declare simd notinbranch
6
int
7
foo
(
long int
a
,
int
b
,
int
c
)
8
{
9
return
a
+
b
+
c
;
10
}
11
12
#pragma omp declare simd notinbranch
13
long int
14
bar
(
int
a
,
int
b
,
long int
c
)
15
{
16
return
a
+
b
+
c
;
17
}
18