1. 34af5a2 Be more consistent about ending suggestions with a '?' by Nico Weber · 12 years ago
  2. b327816 Provide better error messages for incorrect matchers. by Daniel Jasper · 12 years ago
  3. 7c3c6bc Handle lambdas where the lambda-declarator is an explicit "(void)". PR13854. by Eli Friedman · 12 years ago
  4. d6f80da Per C++11 [class.friend]p3, the 'friend' keyword must appear first in a by Richard Smith · 12 years ago
  5. 561e3c6 PR13881: Add -Wzero-length-array for zero length array extension, and move it into -Wgnu. by Richard Smith · 12 years ago
  6. 3bd762d Add some typedefs for clarity. by Rafael Espindola · 12 years ago
  7. 93e4599 Remove Context argument from TemplateDeductionInfo constructor. It was no longer needed after the unused Context member was removed in r164104. by Craig Topper · 12 years ago
  8. 8da8a66 Add the TypeSourceInfo for the lambda call operator to the lambda's by Eli Friedman · 12 years ago
  9. 15a9356 c: warn when an integer value comparison with an by Fariborz Jahanian · 12 years ago
  10. e6d2a96 Add missing matcher for C-style cast expressions. by Daniel Jasper · 12 years ago
  11. 3680b4f Make all VariadicDynCast-Expr-matchers StatementMatchers by Daniel Jasper · 12 years ago
  12. 6bd4e2b Remove an unused private field exposed by the recent LLVM_DELETED_FUNCTION changes. by Craig Topper · 12 years ago
  13. 1a1e995 Remove an unused private field exposed by the recent LLVM_DELETED_FUNCTION changes. by Craig Topper · 12 years ago
  14. be2fa7e Mark unimplemented copy constructors and copy assignment operators with LLVM_DELETED_FUNCTION. by Craig Topper · 12 years ago
  15. 4b08242 If a comma operator is followed by a token which unambiguously indicates the by Richard Smith · 12 years ago
  16. 43f8c40 Per discussion on cfe-dev, remove -Wunique-enums entirely. There by Ted Kremenek · 12 years ago
  17. 03ebd3b objective-C: improve on warnings about misplacement of method by Fariborz Jahanian · 12 years ago
  18. 0860235 objective-C: issue warning when there is no whitespace by Fariborz Jahanian · 12 years ago
  19. 5fc1d0c [analyzer] Teach the analyzer about implicit initialization of statics by Anna Zaks · 12 years ago
  20. 6944e20 Open up a few higher-level functions for tools. by Axel Naumann · 12 years ago
  21. 19ec962 Comment parsing: support \namespace like other commands that contain just a by Dmitri Gribenko · 12 years ago
  22. f56faa0 Use LLVM_DELETED_FUNCTION in place of 'DO NOT IMPLEMENT' comments. by Dmitri Gribenko · 12 years ago
  23. ec1b330 Make PTHManager properly noncopyable. by Dmitri Gribenko · 12 years ago
  24. d11aa85 Address a long-standing FIXME: remove an unused copy constructor and make by Dmitri Gribenko · 12 years ago
  25. bc57b10 const _Atomic(T) is not an atomic type, so do not allow it as the type 'A' in by Richard Smith · 12 years ago
  26. e10f4d3 -Warc-retain-cycles: warn at variable initialization as well as assignment. by Jordan Rose · 12 years ago
  27. 6f5a2ec objective-C arc: remove -Warc-abi in its entirety. // rdar://10554025 by Fariborz Jahanian · 12 years ago
  28. 388a594 Comment parsing: support the "\invariant" command. by Dmitri Gribenko · 12 years ago
  29. ae19fbb Don't perform template argument deduction against invalid templates; by Douglas Gregor · 12 years ago
  30. abcf0dc Comment parsing: handle \deprecated command. It is a block command, but it by Dmitri Gribenko · 12 years ago
  31. 7537945 Promote the warning about extra qualification on a declaration from a by Douglas Gregor · 12 years ago
  32. 7604023 ASTMatchersMacros.h: Appease msvc. by NAKAMURA Takumi · 12 years ago
  33. a756443 Create initial support for matching and binding NestedNameSpecifier(Loc)s. by Daniel Jasper · 12 years ago
  34. 1824d54 Fix Doxygen misuse: refer to parameter names in paragraphs correctly (\arg is by Dmitri Gribenko · 12 years ago
  35. 30c8a1f Add missing accessor. by Manuel Klimek · 12 years ago
  36. 127ff2e Conditionally parse documentation comments in system headers by by Ted Kremenek · 12 years ago
  37. 670941c Format strings: offer a fixit for Darwin's %D/%U/%O to ISO %d/%u/%o. by Jordan Rose · 12 years ago
  38. 275b6f5 Format strings: %D, %U, and %O are valid on Darwin (same as %d, %u, %o). by Jordan Rose · 12 years ago
  39. 5f7c0ad [analyzer] Don't reimplement an existing function. by Anna Zaks · 12 years ago
  40. 4ef1920 Refactor logic in ExprEngine for detecting 'noreturn' methods by Ted Kremenek · 12 years ago
  41. e6f18c3 Add two new functions to Qualifiers. by Richard Trieu · 12 years ago
  42. 16e6a7c [analyzer] Do not report use of undef on "return foo();" when the return type is void. by Anna Zaks · 12 years ago
  43. 522fc21 [analyzer] Teach UndefOrNullArgVisitor to track parent regions. by Anna Zaks · 12 years ago
  44. 63d8872 Rename isA to isSameOrDerivedFrom. by Daniel Jasper · 12 years ago
  45. 0841a07 Comment parsing: recognize more Doxygen commands by Dmitri Gribenko · 12 years ago
  46. e23fb90 Fix a couple of Doxygen issues pointed out by -Wdocumentation. by Dmitri Gribenko · 12 years ago
  47. b648cf0 Revert "objective-C: warn under a flag if missing argument" by Ted Kremenek · 12 years ago
  48. e62b129 Revert "objective-C: warn if selector has nothing but bare" by Ted Kremenek · 12 years ago
  49. 9a4db03 PR13811: Add a FunctionParmPackExpr node to handle references to function by Richard Smith · 12 years ago
  50. 10d65cd objective-C: warn if selector has nothing but bare by Fariborz Jahanian · 12 years ago
  51. b0b8a96 Comment parsing: handle non-builtin commands correctly. After semantic by Dmitri Gribenko · 12 years ago
  52. 92faee7 objective-C: warn under a flag if missing argument by Fariborz Jahanian · 12 years ago
  53. fb7669e Fix typo in comment by Douglas Gregor · 12 years ago
  54. 00b4f64 [analyzer] Member function calls that use qualified names are non-virtual. by Jordan Rose · 12 years ago
  55. 4ea9b89 [analyzer] Do not count calls to small functions when computing stack depth. by Anna Zaks · 12 years ago
  56. 57330ee [analyzer] Add an option to enable/disable objc inlining. by Anna Zaks · 12 years ago
  57. 7229d00 [analyzer] Add ipa-always-inline-size option (with 3 as the default). by Anna Zaks · 12 years ago
  58. 978869a [analyzer] Make the defaults explicit for each of the new config options. by Jordan Rose · 12 years ago
  59. 81fb50e [analyzer] For now, don't inline C++ standard library functions. by Jordan Rose · 12 years ago
  60. e4330a3 Comment AST: TableGen'ize all command lists in CommentCommandTraits.cpp. by Dmitri Gribenko · 12 years ago
  61. 3f0ec52 Thread-safety analysis: differentiate between two forms of analysis; a precise by DeLesley Hutchins · 12 years ago
  62. 9f55983 objective-C: Improving diagnostocs for missing call to by Fariborz Jahanian · 12 years ago
  63. fcde83c Have PathDiagnosticPiece::getString() return a StringRef instead by Ted Kremenek · 12 years ago
  64. 4a66557 RawCommentList: don't copy the whole new RawComment to LastComment each time. by Dmitri Gribenko · 12 years ago
  65. ce15cce Remove dead method ProgramState::MarshalState(). by Ted Kremenek · 12 years ago
  66. 762f159 Added missing const. by Abramo Bagnara · 12 years ago
  67. e5f0588 When a bad UTF-8 encoding or bogus escape sequence is encountered in a by Richard Smith · 12 years ago
  68. 8be066e Format strings: suggest %lld instead of %qd and %Ld with -Wformat-non-iso. by Jordan Rose · 12 years ago
  69. bbb6bb4 Format strings: %Ld isn't available on Darwin or Windows. by Jordan Rose · 12 years ago
  70. 8410113 objective-C: introduce __attribute((objc_requires_super)) on method by Fariborz Jahanian · 12 years ago
  71. 47cbd0f Remove ProgramState::getSymVal(). It was being misused by Checkers, by Ted Kremenek · 12 years ago
  72. 526b4a6 Add default implementation of ConstraintManager::getSymVal() and a doxygen comment. by Ted Kremenek · 12 years ago
  73. ace64b5 Remove ConstraintManager:isEqual(). It is no longer used. by Ted Kremenek · 12 years ago
  74. 9366a5a Moved back getCharAndSizeNoWarn to public area. by Abramo Bagnara · 12 years ago
  75. 76dafa7 Change the behavior of the isDerivedFrom-matcher to not match on the by Daniel Jasper · 12 years ago
  76. 579b120 Implements hasAncestor. by Manuel Klimek · 12 years ago
  77. 6964b3f PR9023: A template template parameter whose template parameter list contains an by Richard Smith · 12 years ago
  78. 1edeed3 [analyzer] Assert that StmtPoint should be created with a non-null Stmt. by Anna Zaks · 12 years ago
  79. 8123b6e Clarified diagnostics for range-based for loops with invalid ranges by Sam Panzer · 12 years ago
  80. 200fa2e [analyzer] Don't attempt to devirtualize calls to base class destructors. by Jordan Rose · 12 years ago
  81. 3359fa3 refactoring + objective-C specific test for my last patch. // rdar://12233989 by Fariborz Jahanian · 12 years ago
  82. 2675b8e Enabling the UTF conversion routines that were previously conditionally ifdef'ed out. This change is required to support enhancements in the LLDB data formatters by Enrico Granata · 12 years ago
  83. 31ba613 Dont cast away const needlessly. Found by gcc48 -Wcast-qual. by Roman Divacky · 12 years ago
  84. 9b925ac [analyzer] Enhance the member expr tracking to account for references. by Anna Zaks · 12 years ago
  85. ec08735 Format strings: suggest casts for NS(U)Integer and [SU]Int32 on Darwin. by Jordan Rose · 12 years ago
  86. 5a1ffe9 [analyzer] Always include destructors in the analysis CFG. by Jordan Rose · 12 years ago
  87. 5b86ffd Allow disabling of wchar_t type. by Abramo Bagnara · 12 years ago
  88. 6ebea89 [analyzer] Be more forgiving about calling methods on struct rvalues. by Jordan Rose · 12 years ago
  89. fd11957 Revert "[analyzer] Treat all struct values as regions (even rvalues)." by Jordan Rose · 12 years ago
  90. a78d0d6 Introduces DynTypedMatcher as a new concept that replaces the UntypedBaseMatcher and TypedMatcher. by Manuel Klimek · 12 years ago
  91. 568ba87 Revert r163083 per chandlerc's request. by Joao Matos · 12 years ago
  92. 4c5fa42 Revert r163099 per chandlerc's request. by Joao Matos · 12 years ago
  93. 5d9cb1b Revert r163076 per chandlerc's request. by Joao Matos · 12 years ago
  94. 679fc93 Revert r163078 per chandlerc's request. by Joao Matos · 12 years ago
  95. 9a134af Improved the warning for the #@ Microsoft charizing operator. The existing one misspelled the token as "@#" and didn't capitalize Microsoft. by Joao Matos · 12 years ago
  96. ac06745 Added a new cursor for SEHLeaveStmt to libclang. by Joao Matos · 12 years ago
  97. ca0d10e Documentation cleanup: Add \file comment for ASTContest.h, add \brief to many by James Dennett · 12 years ago
  98. 5be92de Implemented parsing and AST support for the MS __leave exception statement. Also a minor fix to __except printing in StmtPrinter.cpp. Thanks to Aaron Ballman for review. by Joao Matos · 12 years ago
  99. 8503885 Include the diagnostic introduced in r163078 in a group. by Joao Matos · 12 years ago
  100. f712c48 Added a diagnostic for mismatched MS inheritance attributes. Also fixed the incomplete type member pointer size calculation under the MS ABI. by Joao Matos · 12 years ago