aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/warn-unreachable.c
AgeCommit message (Expand)Author
2013-02-05Change subexpressions to be visited in the CFG from left-to-right.Ted Kremenek
2012-08-24Teach CFG that 'if (x & 0)' and 'if (x * 0)' is an unfeasible branch.Ted Kremenek
2012-01-24Reword/rename -Wswitch-unreachable-default.David Blaikie
2012-01-23Rename -Wswitch-enum-redundant-default to -Wswitch-redundant-default.David Blaikie
2012-01-21Add -Wswitch-enum-redundant-default.David Blaikie
2012-01-03Add test case for PR 9774, which got fixed along the way.Ted Kremenek
2011-08-25Teach -Wunreachable-code about dead code caused by macro expansions. This sh...Ted Kremenek
2011-07-19Reduce -Wuninitialized time by 22% (on sqlite) by removing the recursive AST ...Ted Kremenek
2010-10-24- Fixed subexpressions evaluation order for binary operators to match order i...Marcin Swiderski
2010-09-09Enhance -Wunreachable-code to not consider the 'default:' branch of a switch ...Ted Kremenek
2010-09-03Get rid of the "functions declared 'noreturn' should have a 'void' result typ...Anders Carlsson
2010-08-19Add warning for functions/blocks that have attribute 'noreturn' but return a ...Ted Kremenek
2010-02-24Always add CallExpr as block-level expression. Inline-based interproceduralZhongxing Xu
2010-01-21Improve unreachable code warnings with respect to dead member andMike Stump
2010-01-21Improve unreachable code warnings for with respect to c-style casts.Mike Stump
2010-01-21Improve unreachable code warnings for with respect to ? :.Mike Stump
2010-01-21Improve unreachable code warnings for with respect to compoundMike Stump
2010-01-21Improve unreachable code warnings with respect to dead binary andMike Stump
2010-01-15Generalize handling for unreachable code warnings to all binary operators.Mike Stump
2010-01-15Refine location reporting for unreachable code warnings for comma expressions.Mike Stump
2010-01-15Add testcase for recent checkin.Mike Stump