2014-07-29 Ed Smith-Rowland <3dw4rd@verizon.net>
[official-gcc.git] / gcc / testsuite / gcc.dg / Warray-bounds-7.c
blobfdd95789abaa576bb5ea5c2496c168dc4c312cfc
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -Warray-bounds" } */
4 char *p;
6 int main()
8 p = "";
9 if (p[0] == 0
10 || (p[0] == '_' && p[1] == 0)) /* { dg-bogus "array bounds" "" } */
11 return 0;
12 return 1;