Searched defs:mystr (Results 1 - 1 of 1) sorted by relevance

/external/clang/test/Analysis/
H A Dout-of-bounds.c17 const char *mystr = "mary had a little lamb"; local
18 return mystr[-1]; // expected-warning{{Out of bound memory access}}
22 const char *mystr = "mary had a little lamb"; local
23 return mystr[1000]; // expected-warning{{Out of bound memory access}}
27 const char *mystr = "mary had a little lamb"; local
28 return mystr[5]; // no-warning

Completed in 1108 milliseconds