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
pr79732.c: Require alias support.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
pr23546.c
blob
06324dfcb0aaef1419906ae5b7cebab71e1c7bbb
1
/* { dg-do compile } */
2
/* { dg-options "-O2" } */
3
typedef
int
m64
__attribute__
((
__vector_size__
(
8
)));
4
5
void
mmxCombineMaskU
(
m64
*
mask
,
int
width
)
6
{
7
while
(--
width
>=
0
)
8
*
mask
++ = (
m64
)
0LL
;
9
}
10