Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
ccf43ca05cb1540f3d95a73b7b329bf926808c7b
/
.
/
polly
/
test
/
CodeGen
/
OpenMP
/
extract_memref.c
blob: fa2e63edb93f1d7174aaf03dd4f2228be4c6e3aa [
file
] [
log
] [
blame
]
Tobias Grosser
7580537
2011-04-29 06:27:02 +0000
[
diff
] [
blame
]
1
#define
N
10
2
3
void
foo
()
{
4
float
A
[
N
];
5
int
i
=
0
;
6
7
for
(
i
=
0
;
i
<
N
;
i
++)
8
A
[
i
]
=
10
;
9
10
return
;
11
}
12
13
14
int
main
()
15
{
16
foo
();
17
}