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
LWG 3035. std::allocator's constructors should be constexpr
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
O3-pr46077.c
blob
1a42db20c226020c1adb42373e84f6130e8c3395
1
/* { dg-do compile } */
2
/* { dg-require-effective-target vect_int } */
3
4
void
intf_pcmPlayEffect
(
int
*
src
,
int
*
dst
,
int
size
) {
5
int
i
;
6
for
(
i
=
0
;
i
<
size
;
i
++)
7
*
dst
++ = *
src
&
0x80
? (*
src
++ &
0x7f
) : -*
src
++;
8
}
9