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
/
pr65103-3.c
blob
eddf20bc04be3d6410799eff15435a246d6f539a
1
/* { dg-do compile { target ia32 } } */
2
/* { dg-require-effective-target pie } */
3
/* { dg-options "-O2 -fPIE" } */
4
/* { dg-final { scan-assembler-not "GOTOFF," } } */
5
6
static int
*
data
[
100
];
7
8
void
test
(
long
a
,
long
b
)
9
{
10
do
11
{
12
if
(
a
<
b
)
13
{
14
data
[
a
] =
data
[
b
];
15
a
++;
16
}
17
}
18
while
(
a
<=
b
);
19
}