index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Analysis
/
ReachableCode.cpp
Age
Commit message (
Expand
)
Author
2012-09-06
Dont cast away const needlessly. Found by gcc48 -Wcast-qual.
Roman Divacky
2011-12-20
Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_...
David Blaikie
2011-10-24
Rename AnalysisContext to AnalysisDeclContext. Not only is this name more ac...
Ted Kremenek
2011-08-25
Teach -Wunreachable-code about dead code caused by macro expansions. This sh...
Ted Kremenek
2011-08-23
Start reworking -Wunreachable-code. The original analysis had serious flaws ...
Ted Kremenek
2011-07-23
remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....
Chris Lattner
2011-06-15
Automatic Reference Counting.
John McCall
2011-04-02
Make -Wheader-hygiene not complain about USING_NAMESPACE_THROUGH_MACRO in a n...
Nico Weber
2011-03-01
In preparation for fixing PR 6884, rework CFGElement to have getAs<> return p...
Ted Kremenek
2011-02-17
Change the representation of GNU ?: expressions to use a different expression
John McCall
2011-01-08
Remove a kludge from analysis based warnings that used to detect
Chandler Carruth
2010-12-16
Start migration of static analyzer to using the
Ted Kremenek
2010-10-29
Added CFGTerminator class, that holds information about CFGBlock terminator s...
Marcin Swiderski
2010-09-16
Introduce new CFGElement hierarchy to support C++ CFG, based on Marcin's patch
Zhongxing Xu
2010-09-09
Enhance -Wunreachable-code to not consider the 'default:' branch of a switch ...
Ted Kremenek
2010-08-25
GCC didn't care for my attempt at API compatibility, so brute-force everything
John McCall
2010-02-23
Move the rest of the unreachable code analysis from libSema
Ted Kremenek
2010-02-23
Start moving some of the logic for the unreachable code analysis out of libSema
Ted Kremenek