Files
clang-p2996/clang/test/CodeGen/array.c
Daniel Dunbar a45cf5b6b0 Rename clang to clang-cc.
Tests and drivers updated, still need to shuffle dirs.

llvm-svn: 67602
2009-03-24 02:24:46 +00:00

15 lines
196 B
C

// RUN: clang-cc -emit-llvm %s -o %t
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};
}