dim 1c33a1d2d2 When building with clang, disable -Warray-bounds for sys/dev/asr/asr.c,
as it gets the following warning:

sys/dev/asr/asr.c:1836:29: warning: array index of '58' indexes past the end of an array (that contains 1 element) [-Warray-bounds]
        while ((len > 0) && (sg < &((PPRIVATE_SCSI_SCB_EXECUTE_MESSAGE)
                                   ^
sys/dev/asr/i2omsg.h:934:8: note: array 'Simple' declared here
       I2O_SGE_SIMPLE_ELEMENT              Simple[1];
       ^

This is a false positive, since I2O_SG_ELEMENT::Simple is not declared
as a C99 flexible array member, but in the old (but more portable) way.
At run-time, the proper number of array elements will hopefully have
been allocated.

MFC after:	1 week
2011-12-21 16:38:37 +00:00
..
2011-12-15 12:14:15 +00:00
2011-10-27 14:15:26 +00:00
2011-12-17 15:48:55 +00:00
2011-12-16 14:28:34 +00:00
2011-11-26 23:57:03 +00:00
2011-12-13 13:38:03 +00:00
2011-12-15 06:29:13 +00:00