http://llvm.org/bugs/show_bug.cgi?id=9098
Ted Kremenek <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED --- Comment #2 from Ted Kremenek <[email protected]> 2011-02-16 18:09:40 CST --- We now implement this warning: t.c:3:3: warning: array index of '100' indexes past the end of an array (that contains 100 elements) [-Warray-bounds] foo[100] = '\0'; ^ ~~~ t.c:2:2: note: array 'foo' declared here char foo[100]; ^ Went in here: r125640 r125649 -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. _______________________________________________ LLVMbugs mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs
