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
testsuite: i386: adapt to -std=gnu23 default change
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
pr33373b.c
blob
fc5e6eb249340715d5534f7d4394db4df690e7ac
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
}