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
2018-05-17 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr66137.c
blob
ac230bfdee74b95ccfc52ce13028a8cf341917ef
1
/* PR target/66137 */
2
/* { dg-do compile } */
3
/* { dg-options "-mavx -O3 -ffixed-ebp" } */
4
5
void
6
foo
(
char
*
x
,
char
*
y
,
char
*
z
,
int
a
)
7
{
8
int
i
;
9
for
(
i
=
a
;
i
>
0
;
i
--)
10
*
x
++ = *
y
++ = *
z
++;
11
}