repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr70251.C
blob
5af35b2d8cf6fd86691f4d66aa1bfe3a6c7ca5eb
1
// { dg-do compile }
2
// { dg-additional-options "-w -Wno-psabi" }
3
4
typedef int vec __attribute__((vector_size(64)));
5
vec f(vec x,vec y,vec z)
6
{
7
vec zero={};
8
vec one=zero+1;
9
vec c=x<y;
10
return z+(c?one:zero);
11
}