Sign in
cobalt
/
cobalt
/
0c2b1d4428f8ae16220e86a16bebd07ff691a412
/
.
/
third_party
/
llvm-project
/
polly
/
lib
/
External
/
ppcg
/
tests
/
iterator.c
blob: 651f530660ddee403c5dd789210be3edb86d3708 [
file
] [
log
] [
blame
]
#include
<stdlib.h>
int
main
()
{
int
i
;
int
a
[
101
];
i
=
0
;
#pragma
scop
for
(
i
=
0
;
i
<
100
;
++
i
)
a
[
i
]
=
i
;
a
[
i
]
=
i
;
#pragma
endscop
if
(
a
[
100
]
!=
100
)
return
EXIT_FAILURE
;
return
EXIT_SUCCESS
;
}