index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
test
/
Sema
/
warn-unreachable.c
Age
Commit message (
Expand
)
Author
2013-02-05
Change subexpressions to be visited in the CFG from left-to-right.
Ted Kremenek
2012-08-24
Teach CFG that 'if (x & 0)' and 'if (x * 0)' is an unfeasible branch.
Ted Kremenek
2012-01-24
Reword/rename -Wswitch-unreachable-default.
David Blaikie
2012-01-23
Rename -Wswitch-enum-redundant-default to -Wswitch-redundant-default.
David Blaikie
2012-01-21
Add -Wswitch-enum-redundant-default.
David Blaikie
2012-01-03
Add test case for PR 9774, which got fixed along the way.
Ted Kremenek
2011-08-25
Teach -Wunreachable-code about dead code caused by macro expansions. This sh...
Ted Kremenek
2011-07-19
Reduce -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-09
Enhance -Wunreachable-code to not consider the 'default:' branch of a switch ...
Ted Kremenek
2010-09-03
Get rid of the "functions declared 'noreturn' should have a 'void' result typ...
Anders Carlsson
2010-08-19
Add warning for functions/blocks that have attribute 'noreturn' but return a ...
Ted Kremenek
2010-02-24
Always add CallExpr as block-level expression. Inline-based interprocedural
Zhongxing Xu
2010-01-21
Improve unreachable code warnings with respect to dead member and
Mike Stump
2010-01-21
Improve unreachable code warnings for with respect to c-style casts.
Mike Stump
2010-01-21
Improve unreachable code warnings for with respect to ? :.
Mike Stump
2010-01-21
Improve unreachable code warnings for with respect to compound
Mike Stump
2010-01-21
Improve unreachable code warnings with respect to dead binary and
Mike Stump
2010-01-15
Generalize handling for unreachable code warnings to all binary operators.
Mike Stump
2010-01-15
Refine location reporting for unreachable code warnings for comma expressions.
Mike Stump
2010-01-15
Add testcase for recent checkin.
Mike Stump