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
* es.po: Update.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
fold-compare-7.c
blob
8296751affe422fcd5904dac252bdb714ade18f7
1
/* { dg-do compile } */
2
/* { dg-options "-O2" } */
3
4
typedef
float
vecf
__attribute__
((
vector_size
(
8
*
sizeof
(
float
))));
5
6
long
f
(
vecf
*
f1
,
vecf
*
f2
){
7
return
((*
f1
== *
f2
) <
0
)[
2
];
8
}