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
Update concepts branch to revision 131834
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
pr33373b.c
blob
c294a385c263be16f0e41a86e14cd65ccf33748a
1
/* { dg-do compile } */
2
void
f
(
unsigned int
*
d
,
unsigned int
*
s
,
int
w
)
3
{
4
int
i
;
5
for
(
i
=
0
;
i
<
w
; ++
i
)
6
d
[
i
] =
s
[
i
] * (
unsigned short
) (~
d
[
i
] >>
24
);
7
}
8
/* { dg-final { cleanup-tree-dump "vect" } } */