summaryrefslogtreecommitdiffstats
path: root/test/Sema/warn-unreachable.c
Commit message (Expand)AuthorAgeFilesLines
* Fix PR13910: Don't warn that __builtin_unreachable() is unreachableAlex Lorenz2017-04-111-0/+37
* -Wunreachable-code: 'true' and 'false' should not be treated as configurationAlex Lorenz2017-04-051-0/+10
* Avoid multiple -Wunreachable-code diagnostics that are triggered byAlex Lorenz2017-01-121-0/+55
* Fix some typosAlp Toker2014-05-051-2/+2
* Improve -Wunreachable-code to provide a means to indicate code is intentional...Ted Kremenek2014-03-291-2/+33
* Further refine -Wunreachable-code groups so that -Wno-unreachable-code-break ...Ted Kremenek2014-03-151-9/+49
* Start breaking -Wunreachable-code up into different diagnostic groups.Ted Kremenek2014-03-151-1/+1
* [-Wunreachable-code] Handle 'return' with no argument dominated by 'noreturn'...Ted Kremenek2014-03-081-0/+5
* [-Wunreachable-code] Correctly expand artificial reachability to pruned '&&' ...Ted Kremenek2014-03-071-2/+2
* [-Wunreachable-code] Teach reachable code analysis heuristics about more lite...Ted Kremenek2014-03-071-1/+13
* [-Wunreachable-code] Refine treating all branches of 'switch' as reachable, w...Ted Kremenek2014-03-061-0/+11
* [-Wunreachable-code] Handle idiomatic do...while() with an uninteresting cond...Ted Kremenek2014-03-061-1/+2
* [-Wunreachable-code] Handle idiomatic do...while() with an uninteresting cond...Ted Kremenek2014-03-061-2/+24
* [-Wunreachable-code] generalize pruning out warning on trivial returns.Ted Kremenek2014-03-051-1/+22
* [-Wunreachabe-code] add test for double 'break'.Ted Kremenek2014-03-051-0/+1
* [-Wunreachable-code] include some enum constants in "configuration value" heu...Ted Kremenek2014-03-051-0/+18
* [-Wunreachable-code] generalize configuration value checking to all compariso...Ted Kremenek2014-03-051-0/+8
* [-Wunreachable-code] Don't warn about dead code guarded by a "configuration v...Ted Kremenek2014-03-051-1/+24
* [-Wunreachable-code] always treat 'case:' and 'default:' cases as reachable.Ted Kremenek2014-02-271-0/+3
* [-Wunreachable-code] Don't warn about trivially unreachable return statements...Ted Kremenek2014-02-271-0/+13
* Fix test case indentation.Ted Kremenek2014-02-271-1/+1
* [-Wunreachable-code] Don't warn about unreachable 'default:' cases.Ted Kremenek2014-02-271-1/+24
* [-Wunreachable-code] Prune out unreachable warnings where a 'break' is preced...Ted Kremenek2014-02-271-0/+21
* Add test that -Wunreachable-code warnings are suppressed in headers.Ted Kremenek2014-02-211-1/+3
* Forbid driver use in Sema testsAlp Toker2014-01-161-1/+1
* Change subexpressions to be visited in the CFG from left-to-right.Ted Kremenek2013-02-051-4/+4
* Teach CFG that 'if (x & 0)' and 'if (x * 0)' is an unfeasible branch.Ted Kremenek2012-08-241-0/+9
* Reword/rename -Wswitch-unreachable-default.David Blaikie2012-01-241-1/+1
* Rename -Wswitch-enum-redundant-default to -Wswitch-redundant-default.David Blaikie2012-01-231-1/+1
* Add -Wswitch-enum-redundant-default.David Blaikie2012-01-211-1/+1
* Add test case for PR 9774, which got fixed along the way.Ted Kremenek2012-01-031-0/+6
* Teach -Wunreachable-code about dead code caused by macro expansions. This sh...Ted Kremenek2011-08-251-0/+12
* Reduce -Wuninitialized time by 22% (on sqlite) by removing the recursive AST ...Ted Kremenek2011-07-191-4/+4
* - Fixed subexpressions evaluation order for binary operators to match order i...Marcin Swiderski2010-10-241-4/+4
* Enhance -Wunreachable-code to not consider the 'default:' branch of a switch ...Ted Kremenek2010-09-091-0/+16
* Get rid of the "functions declared 'noreturn' should have a 'void' result typ...Anders Carlsson2010-09-031-1/+1
* Add warning for functions/blocks that have attribute 'noreturn' but return a ...Ted Kremenek2010-08-191-1/+1
* Always add CallExpr as block-level expression. Inline-based interproceduralZhongxing Xu2010-02-241-2/+2
* Improve unreachable code warnings with respect to dead member andMike Stump2010-01-211-0/+6
* Improve unreachable code warnings for with respect to c-style casts.Mike Stump2010-01-211-0/+3
* Improve unreachable code warnings for with respect to ? :.Mike Stump2010-01-211-0/+4
* Improve unreachable code warnings for with respect to compoundMike Stump2010-01-211-0/+5
* Improve unreachable code warnings with respect to dead binary andMike Stump2010-01-211-4/+10
* Generalize handling for unreachable code warnings to all binary operators.Mike Stump2010-01-151-4/+4
* Refine location reporting for unreachable code warnings for comma expressions.Mike Stump2010-01-151-0/+56
* Add testcase for recent checkin.Mike Stump2010-01-151-0/+20