[analyzer] Use the new registration mechanism on the non-path-sensitive-checkers:
[clang.git] / test / CodeGen / array.c
blob0b401ea8190c27e22a65b4a2daad94f75ef32c82
1 // RUN: %clang_cc1 -emit-llvm %s -o %t
3 void f() {
4 int a[2];
5 a[0] = 0;
8 void f2() {
9 int x = 0;
10 int y = 1;
11 int a[10] = { y, x, 2, 3};
12 int b[10] = { 2,4,x,6,y,8};
13 int c[5] = { 0,1,2,3};