Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
ccf43ca05cb1540f3d95a73b7b329bf926808c7b
/
.
/
polly
/
test
/
CodeGen
/
OpenMP
/
add_memref.c
blob: 02609a3b09af137c510bfd7b8784844ff3052241 [
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
6
for
(
int
i
=
0
;
i
<
N
;
i
++)
7
A
[
i
]
=
10
;
8
9
return
;
10
}