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
/
isl-ast-gen-user-1.c
blob
8f246d8e6a4cbf04cbf82c61946abd0ccbcc3bbe
1
static const int
N
=
12
;
2
int
nSlip
;
3
4
int
main
()
5
{
6
int
i
,
j
,
k
,
fdot
=
0
;
7
int
a
[
N
][
N
];
8
9
for
(
i
=
1
;
i
<
nSlip
;
i
++)
10
{
11
for
(
j
=
i
+
1
;
j
<
nSlip
;
j
++)
12
{
13
for
(
k
=
0
;
k
<
i
;
k
++)
14
fdot
+=
a
[
i
][
k
] *
a
[
k
][
j
];
15
a
[
i
][
j
] =
a
[
i
][
j
] -
fdot
;
16
}
17
}
18
19
return
0
;
20
}
21
22
23