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
Stop only if there aren't any usable algorithms
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr55686.c
blob
a263b08dd718f89d0eaf43ea416f1f0f239892a5
1
/* PR target/55686 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2" } */
4
5
void
6
foo
(
long
x
,
long
*
y
)
7
{
8
long
*
a
=
y
-
64
,
i
;
9
for
(
i
=
0
;
i
<
x
;
i
++)
10
{
11
long
v
=
y
[
i
];
12
*
a
++ =
v
;
13
}
14
register
void
**
c
__asm__
(
"di"
);
15
goto
**
c
;
16
}