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
* gcc.dg/torture/stackalign/builtin-apply-2.c: Fix skip-if syntax.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
graphite
/
id-14.c
blob
51ac4c1bbe573fc12903bb4c693fce1dc817c80e
1
typedef
struct
{
2
int
n
;
3
float
*
a
;
4
}
bar
;
5
6
float
7
foo
(
bar
*
b
)
8
{
9
float
c
,
d
;
10
int
j
;
11
12
for
(
j
=
0
; (
j
<
b
->
n
);
j
++)
13
d
+=
b
->
a
[
j
];
14
15
for
(
j
=
0
; (
j
<
b
->
n
);
j
++)
16
c
+=
b
->
a
[
j
];
17
18
return
d
;
19
}