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
PR tree-optimization/84740
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
section-anchors-pr27770.c
blob
4373dce917f9d7916e128a639e81179fe1250ada
1
/* { dg-require-effective-target section_anchors } */
2
3
#include <stdarg.h>
4
#include
"tree-vect.h"
5
6
short
x
;
7
static short
f
[
100
] = {
0
};
8
int
9
bar
(
void
)
10
{
11
return
f
[
0
];
12
}
13
void
14
foo
(
void
)
15
{
16
int
i
;
17
for
(
i
=
0
;
i
<
100
;
i
++)
18
f
[
i
]++;
19
}
20
int
main
(
void
)
21
{
22
int
i
;
23
check_vect
();
24
foo
();
25
for
(
i
=
0
;
i
<
100
;
i
++)
26
if
(
f
[
i
]!=
1
)
27
abort
();
28
return
0
;
29
}
30