repo.or.cz
/
pet.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix use of DiagnosticOptions for older clangs
[pet.git]
/
tests
/
inf2.c
blob
0a2e6bc12d76b58ecf5e0cfc9e6414de13eb0400
1
int
N
;
2
3
#pragma parameter N 8 16
4
5
int
main
()
6
{
7
int
i
,
j
,
a
[
N
],
b
[
N
];
8
9
#pragma scop
10
while
(
1
) {
11
for
(
j
=
0
;
j
<
N
; ++
j
)
12
a
[
j
] =
0
;
13
for
(
j
=
0
;
j
<
N
; ++
j
)
14
b
[
j
] =
a
[
j
];
15
}
16
#pragma endscop
17
}