Home | History | Annotate | Download | only in Analysis

Lines Matching refs:array

20 // The ElementRegion's type depends on the array region's rvalue type. If it was
55 p = &x + 1; // expected-warning{{Pointer arithmetic done on non-array variables means reliance on memory layout, which is dangerous}}
78 clang_analyzer_eval((&a - 0) != 0); // expected-warning{{TRUE}} expected-warning{{Pointer arithmetic done on non-array variables}}
114 int array[10];
115 int *a = &array[2];
116 int *b = &array[5];
126 int array[10];
127 int *a = &array[2];
128 char *b = (char*)&array[5];
150 int array[2];
151 void *a = &array, *b = &s;