mirror of
https://github.com/torvalds/linux.git
synced 2024-10-31 17:21:49 +00:00
3f984cb399
Unsigned expressions cannot be lesser than zero. Presence of comparisons 'unsigned (<|<=|>|>=) 0' often indicates a bug, usually wrong type of variable. The patch beside finding such comparisons tries to eliminate false positives, mainly by bypassing range checks. gcc can detect such comparisons also using -Wtype-limits switch, but it warns also in correct cases, making too much noise. Signed-off-by: Andrzej Hajda <a.hajda@samsung.com> Acked-by: Julia Lawall <julia.lawall@lip6.fr> Signed-off-by: Michal Marek <mmarek@suse.com> |
||
---|---|---|
.. | ||
doublebitand.cocci | ||
doubletest.cocci | ||
odd_ptr_err.cocci | ||
unsigned_lesser_than_zero.cocci |