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
* tree-loop-distribution.c (INCLUDE_ALGORITHM): New header file.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr69915.c
blob
4c60c59d40046df29e059642e2af630d4846768a
1
/* PR middle-end/69915 */
2
/* { dg-do compile } */
3
/* { dg-options "-O -ftracer" } */
4
5
typedef
unsigned short
V
__attribute__
((
vector_size
(
32
)));
6
7
unsigned
8
foo
(
unsigned
x
,
unsigned
c
,
V
*
p
)
9
{
10
V v
= *
p
;
11
if
(
c
<
360
)
12
v
= (
V
) {
0
};
13
v
*= (
V
) {
x
};
14
return
v
[
1
];
15
}