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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
graphite
/
isl-ast-gen-blocks-1.c
blob
cd67d87534eab1d7f52739fe8356bb857625826f
1
int
n
=
50
;
2
static int
__attribute__
((
noinline
))
3
foo
()
4
{
5
int
i
,
res
;
6
for
(
i
=
0
,
res
=
0
;
i
<
n
;
i
++)
7
res
+=
i
;
8
9
return
res
;
10
}
11
12
extern
void
abort
();
13
14
int
15
main
(
void
)
16
{
17
int
res
=
foo
();
18
19
20
if
(
res
!=
1225
)
21
abort
();
22
23
return
0
;
24
}