Age | Commit message (Expand) | Author |
2013-04-25 | [analyzer] Teach DeadStoreChecker to look though BO_Comma and disregard the LHS. | Anna Zaks |
2012-08-24 | Fix analyzer tests. | Ted Kremenek |
2012-08-22 | Remove BasicConstraintManager. It hasn't been in active service for a while. | Ted Kremenek |
2012-04-04 | Look through chains of 'x = y = z' when employing silencing heuristics in the... | Ted Kremenek |
2012-01-27 | Remove the "C" in "implicitly declaring C library function" diagnostic | Jean-Daniel Dupas |
2012-01-20 | Reenable DeadStoresChecker under --analyze, and move the IdempotentOperations... | Ted Kremenek |
2011-07-28 | Really remove FlatStoreManager and BasicStoreManager, this time from the driv... | Ted Kremenek |
2011-03-12 | Re-enable the IdempotentOperations checker for --analyze, and put it and the ... | Ted Kremenek |
2011-02-28 | [analyzer] Remove '-analyzer-check-objc-mem' flag, the nominee for best misno... | Argyrios Kyrtzidis |
2011-02-28 | [analyzer] Move the DeadStores checker out of the 'core' package. | Argyrios Kyrtzidis |
2011-02-24 | [analyzer] Remove '-analyzer-experimental-internal-checks' flag, it doesn't h... | Argyrios Kyrtzidis |
2011-02-24 | Allow passing a list of comma separated checker names to -analyzer-checker, e.g: | Argyrios Kyrtzidis |
2011-02-17 | [analyzer] Use the new registration mechanism on the non-path-sensitive-check... | Argyrios Kyrtzidis |
2011-02-15 | [analyzer] Use the new registration mechanism on the IdempotentOperationChecker. | Argyrios Kyrtzidis |
2011-02-12 | Don't emit a dead store for '++' operations unless it occurs with a return st... | Ted Kremenek |
2011-02-11 | Don't report dead stores on unreachable code paths. Fixes <rdar://problem/84... | Ted Kremenek |
2011-01-13 | Remove warning in dead stores checker for | Ted Kremenek |
2010-09-19 | Revert r114316, -Wunused-value enabled by default was intended. | Argyrios Kyrtzidis |
2010-09-19 | Make -Wunused-value off by default, matching GCC. Fixes rdar://7126194. | Argyrios Kyrtzidis |
2010-09-09 | Rename GRState::getSVal() -> getRawSVal() and getSimplifiedSVal() -> getSVal(). | Ted Kremenek |
2010-09-05 | make clang print types as "const int *" instead of "int const*", | Chris Lattner |
2010-08-24 | Improvements to IdempotentOperationChecker and its use of PseudoConstantAnalysis | Tom Care |
2010-08-17 | Fix horrible CFG bug caused by a series of NullStmts appearing at the beginni... | Ted Kremenek |
2010-08-12 | Improved IdempotentOperationChecker false positives and false negatives. | Tom Care |
2010-07-27 | Finesse 'idempotent operations' analyzer issues to include the opcode of the ... | Ted Kremenek |
2010-07-16 | Improved false positive rate for the idempotent operations checker and moved ... | Tom Care |
2010-06-30 | Fix rdar://8139785 "implement warning on dead expression in comma operator" | Argyrios Kyrtzidis |
2010-05-21 | Fix crash in CFG construction for 'break' statements appearing in statement e... | Ted Kremenek |
2010-03-18 | Tweak dead stores checker to not emit a warning when initialization | Ted Kremenek |
2010-03-10 | When computing in AnalysisContext the variables referenced | Ted Kremenek |
2010-02-05 | Rename -cc1 option '-checker-cfref' to '-analyzer-check-objc-mem'. | Ted Kremenek |
2010-02-05 | Rename -cc1 option '-warn-dead-stores' to '-analyzer-check-dead-stores'. | Ted Kremenek |
2010-01-23 | Insulate these from changes to the default for -Wunreachable-code. | Mike Stump |
2010-01-09 | add a bunch of missing prototypes to tests | Chris Lattner |
2009-12-15 | Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'. | Daniel Dunbar |
2009-12-14 | Replace clang-cc with clang -cc1. | Zhongxing Xu |
2009-12-03 | Add a heuristic to the dead stores checker to prune dead stores for variables... | Ted Kremenek |
2009-12-01 | Added dead-stores test cases that involve the use of blocks. | Ted Kremenek |
2009-11-26 | Add test case that shows that dead stores checking now works in the presence ... | Ted Kremenek |
2009-11-22 | Change CheckDeadStores to use Expr::isNullPointerConstant, which will correct... | Ted Kremenek |
2009-11-13 | Add clang-cc option "--analyzer-experimental-internal-checks". This | Ted Kremenek |
2009-11-08 | Eliminate &&s in tests. | Daniel Dunbar |
2009-10-13 | Turn -Wparentheses on by default. | John McCall |
2009-07-29 | Remove 'StoreManager::OldCastRegion()', TypedViewRegion (which only | Ted Kremenek |
2009-07-21 | Prep for new warning. | Mike Stump |
2009-07-21 | Wire up CFG improvements for __builtin_choose_expr. | Mike Stump |
2009-07-21 | Wire up CFG improvements for do { } while () when the condition is known. | Mike Stump |
2009-07-21 | Wire up for statement CFG improvements for conditionals that are known. | Mike Stump |
2009-07-21 | Wire up CFG improvements for while when the condition is known. | Mike Stump |
2009-07-20 | Add yet more analysis for CFGs involving conditionals that are actually const... | Mike Stump |