Home | History | Annotate | Download | only in Analysis

Lines Matching full:warning

9   char c = s[4]; // no-warning
10 return s[5] + c; // expected-warning{{Access out-of-bound array element (buffer overflow)}}
15 p[3] = 4; // expected-warning{{Access out-of-bound array element (buffer overflow)}}
29 p[0] = a; // no-warning
30 p[1] = a; // expected-warning{{Access out-of-bound array element (buffer overflow)}}
36 p[0] = a; // no-warning
37 p[1] = a; // no-warning
38 p[2] = a; // expected-warning{{Access out-of-bound array element (buffer overflow)}}
43 p[3] = '.'; // no-warning
44 p[4] = '!'; // expected-warning{{out-of-bound}}
50 b[1] = 3; // expected-warning{{out-of-bound}}
55 a.c[3] = 1; // expected-warning{{out-of-bound}}
61 x[4] = 4; // no-warning
62 x[5] = 5; // expected-warning{{out-of-bound}}
69 x[4] = 4; // no-warning
70 x[5] = 5; // expected-warning{{out-of-bound}}
77 return x[a]; // expected-warning{{out-of-bound}}
85 return x[a]; // expected-warning{{out-of-bound}}
119 if (in < ins[eee]) { // expected-warning {{Access out-of-bound array element (buffer overflow)}}