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
Stop only if there aren't any usable algorithms
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr56225.c
blob
638c0cef5f29819f175130fd810beb04892c9d8a
1
/* PR target/56225 */
2
/* { dg-do compile { target { ia32 } } } */
3
/* { dg-options "-O2 -march=pentium3 -mtune=generic" } */
4
5
void
bar
(
int
);
6
7
void
8
foo
(
int
x
,
int
y
)
9
{
10
__attribute__
((
vector_size
(
8
*
sizeof
(
short
))))
short
s0
= {
x
};
11
bar
((
short
) (
long
) &
s0
+
y
);
12
}