1. 5deddaf -Wformat: better handling of qualifiers on pointer arguments by Hans Wennborg · 12 years ago
  2. cec9ce4 Make -Wformat check the argument type for %n. by Hans Wennborg · 12 years ago
  3. 4684778 Make -Wformat walk the typedef chain when looking for size_t, etc. by Hans Wennborg · 12 years ago
  4. 11abf2a clang/lib: [CMake] Update tblgen'd dependencies. by NAKAMURA Takumi · 12 years ago
  5. 866abce clang/lib: [CMake] Reformat, alphabetize lists. by NAKAMURA Takumi · 12 years ago
  6. b9d0b76 Final piece of core issue 1330: delay computing the exception specification of by Richard Smith · 12 years ago
  7. 1d3ca25 [analyzer] Don't crash on implicit statements inside initializers. by Jordan Rose · 12 years ago
  8. d7f1d13 [analyzer] Variables with destructors are live until the destructor is run. by Jordan Rose · 12 years ago
  9. 56df4a9 When a && or || appears as the condition of a ?:, perform appropriate by Richard Smith · 12 years ago
  10. bed28ac Fix a typo (the the => the) by Sylvestre Ledru · 12 years ago
  11. fd8b435 Add a reverse iterator to DeclStmt, and use it when building a CFG. by Jordan Rose · 12 years ago
  12. eee18c3 Simplify UninitializedValues.cpp by removing logic to handle the previous (imprecise) representation by Ted Kremenek · 12 years ago
  13. 88237bf Teach CFG construction about destructors resulting from references to array types. Fixes crash in <rdar://problem/11671507>. by Ted Kremenek · 12 years ago
  14. 6cfa78f Uninitialized variables: two little changes: by Richard Smith · 12 years ago
  15. 9532e0d -Wuninitialized: Split the classification of DeclRefExprs as initialization or by Richard Smith · 12 years ago
  16. 3f635c0 Refine CFG so that '&&' and '||' don't lead to extra confluence points when used in a branch, but by Ted Kremenek · 12 years ago
  17. 5c3ea5c Hoist CFG builder logic for '&&' and '||' into helper method. No funcationlity change. by Ted Kremenek · 12 years ago
  18. 449d4d5 Remove unused method declaration. by Ted Kremenek · 12 years ago
  19. 6960ee6 Sort prototypes. No functionality change. by Ted Kremenek · 12 years ago
  20. 558e887 PR13360: When deciding the earliest point which inevitably leads to an by Richard Smith · 12 years ago
  21. 1310611 Thread safety analysis: impove handling of trylock expressions. by DeLesley Hutchins · 12 years ago
  22. 8d3ba23 Implement AST classes for comments, a real parser for Doxygen comments and a by Dmitri Gribenko · 12 years ago
  23. 5381c05 Thread-safety analysis: eliminate false positives in case where the definition by DeLesley Hutchins · 12 years ago
  24. 471c8b4 Drop the ASTContext.h include from DeclFriend.h and DeclTemplate.h. by Benjamin Kramer · 12 years ago
  25. 478851c Drop the ASTContext.h include from Stmt.h and fix up transitive users. by Benjamin Kramer · 12 years ago
  26. 96fac6a Thread safety analysis: improve handling of smart pointers. by DeLesley Hutchins · 12 years ago
  27. 9d6e7f3 Thread Safety Analysis: handle expressions involving temporaries, by DeLesley Hutchins · 12 years ago
  28. a9e8b9e -Wuninitialized: assume that an __attribute__((returns_twice)) function might by Richard Smith · 12 years ago
  29. bbe3341 Thread safety analysis: fixed bug that occurs when very silly people by DeLesley Hutchins · 12 years ago
  30. 879a433 Thread safety analysis: fixed incorrect error message at the end of a locks_required function. by DeLesley Hutchins · 12 years ago
  31. c36eda1 Thread safety analysis: don't warn in case of duplicate annotation. by DeLesley Hutchins · 12 years ago
  32. 76f0a6e Thread Safety Analysis: turn off checking within trylock functions. by DeLesley Hutchins · 12 years ago
  33. d4aeb80 Bail out the LiveVariables analysis when the CFG is very large, as by Ted Kremenek · 12 years ago
  34. c99a5d8 Thread safety analysis: support release() function on scoped lockable objects. by DeLesley Hutchins · 12 years ago
  35. f63797c Thread safety analysis: implement lock_returned attribute. by DeLesley Hutchins · 12 years ago
  36. 0da4414 Thread safety analysis: fixes a bug in which locksets are not handled by DeLesley Hutchins · 12 years ago
  37. b0d8671 Remove a goofy CMake hack and use the standard CMake facilities to by Chandler Carruth · 12 years ago
  38. 8f40dcc -Wuninitialized bugfix: when entering the scope of a variable with no by Richard Smith · 12 years ago
  39. 581deb3 Revert Decl's iterators back to pointer value_type rather than reference value_type by David Blaikie · 12 years ago
  40. facde17 Remove unused private member variables found by clang's new -Wunused-private-field. by Benjamin Kramer · 12 years ago
  41. a08e7bc Zap the /Za compiler switch from MSVC projects, the option is considered harmful even by Microsoft people and clang won't build using the MSVC 2012 RC if not removed. by Francois Pichet · 12 years ago
  42. 033a9c0 Make suggestions for mismatched enum arguments to printf/scanf. by Jordan Rose · 12 years ago
  43. ee0259d Teach printf/scanf about enums with fixed underlying types. by Jordan Rose · 12 years ago
  44. 7fa9b4f static analyzer: add inlining support for directly called blocks. by Ted Kremenek · 12 years ago
  45. 153acdb Suggest '%@' for Objective-C objects in ObjC format strings. by Jordan Rose · 12 years ago
  46. 2815e1a Split a chunk of -Wconditional-uninitialized warnings out into a separate flag, by Richard Smith · 12 years ago
  47. 8189188 Some cleanups around the uninitialized variables warning, and a FIXME. No functional change. by Richard Smith · 12 years ago
  48. 101d4e0 Make -Wformat accept printf("%hhx", c); with -funsigned-char by Hans Wennborg · 12 years ago
  49. 392da48 Fix handling of wint_t - we can't assume wint_t is purely an integer promotion of wchar_t - they may differ in signedness. by James Molloy · 12 years ago
  50. e0d3b4c Add -Wimplicit-fallthrough warning flag, which warns on fallthrough between by Richard Smith · 12 years ago
  51. 262bc18 Remove the ref/value inconsistency in filter_decl_iterator. by David Blaikie · 12 years ago
  52. b86b855 PR11926 + duplicates: Fix crash in -Wuninitialized when using a compiler like by Richard Smith · 12 years ago
  53. d200187 [analyzer] Remove references to idx::TranslationUnit. Index is dead, cross-TU inlining never panned out. by Jordy Rose · 12 years ago
  54. 0b3ade8 [analyzer] Run remove dead bindings right before leaving a function. by Anna Zaks · 12 years ago
  55. 54c350a Refactor the thread safety analysis so that it is easier to do by DeLesley Hutchins · 12 years ago
  56. e6975e9 Implement DR1330 in C++11 mode, to support libstdc++4.7 which uses it. by Richard Smith · 12 years ago
  57. 534986f Add an AttributedStmt type to represent a statement with C++11 attributes by Richard Smith · 12 years ago
  58. 87e154c Remove the unused, unmaintained, incomplete 'Index' library. by Douglas Gregor · 12 years ago
  59. 6a86082 [analyzer] PCH deserialization optimization. by Anna Zaks · 12 years ago
  60. 83748e2 Include lambda capture init expressions in CFG. by Ted Kremenek · 12 years ago
  61. 55331da Fix CFGBuilder to not include the body of a LambdaExpr in the CFG of the enclosing function. by Ted Kremenek · 12 years ago
  62. bb3d20f Do not crash in the callgraph construction when encountering deleted function definitions. Fixes <rdar://problem/11178609>. by Ted Kremenek · 12 years ago
  63. 6955da2 clang/lib/Analysis/CFG.cpp: Get rid of early insertion of placeholder to the map. by NAKAMURA Takumi · 12 years ago
  64. 9260f61 clang/lib/Analysis/CFG.cpp: Fix memory leak since r153297. by NAKAMURA Takumi · 12 years ago
  65. 8c6d360 [CFG] Cache boolean evaluations of expressions to avoid multiple re-evaluations by Argyrios Kyrtzidis · 12 years ago
  66. 550f223 Fix broken CFG when an initializer is a statement expression that starts with a while loop (PR 12325). by Ted Kremenek · 13 years ago
  67. 3d7c44e [analyzer] Malloc: Utter the name of the leaked variable. by Anna Zaks · 13 years ago
  68. 4cf2253 Fix crash when querying the CFG reported when using the thread safety analysis by Ted Kremenek · 13 years ago
  69. 44b8e46 Kill cocoa::deriveNamingConvention and cocoa::followsFundamentalRule. They are now just simple wrappers around method families, and method decls can cache method family lookups. Also, no one is using them right now. by Jordy Rose · 13 years ago
  70. afcd195 Support '%p' format specifier with block pointers. by Ted Kremenek · 13 years ago
  71. d53e877 Fix dereference of end iterator. Spotted by ASan. by Matt Beaumont-Gay · 13 years ago
  72. a2e589e [analyzer] Refactor CallGraph to use Recursive AST visitor when by Anna Zaks · 13 years ago
  73. 4e4d084 Unify naming of LangOptions variable/get function across the Clang stack (Lex to AST). by David Blaikie · 13 years ago
  74. 9b20a90 Replace a map of boolean values with a set. by Benjamin Kramer · 13 years ago
  75. f4b88a4 Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr to by John McCall · 13 years ago
  76. 337e4db [analyzer] fix regression in analyzer of NOT actually aborting on Stmts it doesn't understand. We registered by Ted Kremenek · 13 years ago
  77. a5d531f CallGraph: Add getNode() method, constify. by Anna Zaks · 13 years ago
  78. f856264 -Wformat-non-iso: warn about positional arguments (pr12017) by Hans Wennborg · 13 years ago
  79. d277661 Call Graph: Only the root node is allowed to have an invalid Decl*. by Anna Zaks · 13 years ago
  80. a50a5cd Remove stray semi-colon. by Daniel Dunbar · 13 years ago
  81. 196b8cf Add a basic CallGraph to Analysis. by Anna Zaks · 13 years ago
  82. 9fcce65 AST representation for user-defined literals, plus just enough of semantic by Richard Smith · 13 years ago
  83. 8e282c3 Fix horrific CFG bug where '@autoreleasepool' would be put in a dangling block in the CFG. by Ted Kremenek · 13 years ago
  84. 0d95dfc Thread safety analysis: expand set of expressions that can be used to denote locks. by DeLesley Hutchins · 13 years ago
  85. 2a35be8 Thread safety analysis: handle CFG blocks which call functions marked as noreturn. by DeLesley Hutchins · 13 years ago
  86. b2c60b0 Move llvm/ADT/SaveAndRestore.h -> llvm/Support/SaveAndRestore.h. by Argyrios Kyrtzidis · 13 years ago
  87. d45d361 Move "clang/Analysis/Support/SaveAndRestore.h" to "llvm/ADT/SaveAndRestore.h" by Argyrios Kyrtzidis · 13 years ago
  88. 7651742 Warn about non-standard format strings (pr12017) by Hans Wennborg · 13 years ago
  89. 2f13bec Thread-safety analysis: Disable checking inside constructors, destructors, lock, and unlock functions by DeLesley Hutchins · 13 years ago
  90. 4bda3ec Thread-Safety: added support for 'this' as a lock expression. by DeLesley Hutchins · 13 years ago
  91. 32addd5 Format string analysis: give 'q' its own enumerator. by Hans Wennborg · 13 years ago
  92. be6126a Make -Wformat fix-its preserve original conversion specifiers. by Hans Wennborg · 13 years ago
  93. b4a3ef7 Tweak format string checking to work with %@ and ObjC toll-free bridging. <rdar://problem/10814120> by Ted Kremenek · 13 years ago
  94. 6f42b62 Basic: import OwningPtr<> into clang namespace by Dylan Noblesmith · 13 years ago
  95. 2e51562 Thread safety analysis: by Richard Smith · 13 years ago
  96. aacde71 Thread safety analysis: at a CFG join point between a block terminating in a by Richard Smith · 13 years ago
  97. 7da1f46 Format string warnings: don't a.k.a. wchar_t with wchar_t. by Hans Wennborg · 13 years ago
  98. 54a7e3f [CFG] Removed unused local variable. by Erik Verbruggen · 13 years ago
  99. 339b907 Let %S, %ls, %C match 16bit types in NSStrings. by Nico Weber · 13 years ago
  100. e6ca97f Fix NSLog format string checking for %@. by Ted Kremenek · 13 years ago