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
Require target lra in gcc.dg/pr108095.c
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr102892-1.c
blob
faca3f2f35da42387886d6bad52755ebc511bc39
1
/* { dg-do link } */
2
/* { dg-options "-O3" } */
3
/* { dg-additional-options "-fno-PIC" { target ia32 } } */
4
/* { dg-additional-sources "pr102892-2.c" } */
5
6
static long
b
[
2
][
1
] = {
0
};
7
8
extern
void
bar
(
void
);
9
extern
void
foo
(
void
);
10
11
int
12
main
()
13
{
14
long
c
=
0
;
15
for
(
long
a
=
0
;
a
<
1
; ++
a
)
16
for
(;
c
<=
1
;
c
++) {
17
bar
();
18
if
(
1
==
b
[
c
][
0
])
19
foo
();
20
}
21
return
0
;
22
}