Files
clang-p2996/clang/test/CodeGen/array.c
Devang Patel 8717417b3b Codegen array initializers.
llvm-svn: 43385
2007-10-26 17:44:44 +00:00

15 lines
187 B
C

// RUN: clang -emit-llvm %s
int f() {
int a[2];
a[0] = 0;
}
int f2() {
int x = 0;
int y = 1;
int a[10] = { y, x, 2, 3};
int b[10] = { 2,4,x,6,y,8};
int c[5] = { 0,1,2,3};
}