1. d81e961 Update parser's disambiguation to cope with braced function-style casts in by Richard Smith · 13 years ago
  2. 61b83c0 Add new driver warning from r151174 to a warning group. Please let me know if this isn't the appropriate grouping. by Chad Rosier · 13 years ago
  3. 2dd17a1 [driver] Add a warning for when -mcpu= is specified without an argument. There by Chad Rosier · 13 years ago
  4. 33deb35 Fix parsing and processing initializer lists in return statements and as direct member initializers. by Sebastian Redl · 13 years ago
  5. 7651742 Warn about non-standard format strings (pr12017) by Hans Wennborg · 13 years ago
  6. 341785e More ArrayRef-ification of methods. by Bill Wendling · 13 years ago
  7. 4fe5be0 ArrayRef-icize the function arguments. by Bill Wendling · 13 years ago
  8. 0635aa7 Accept braced-init-lists in conditions, and, in passing, dramatically improve by Richard Smith · 13 years ago
  9. ac1303e Generate an AST for the conversion from a lambda closure type to a by Douglas Gregor · 13 years ago
  10. 76f3f69 Implement C++11 [expr.call]p11: If the operand to a decltype-specifier is a by Richard Smith · 13 years ago
  11. e43fe99 Fix typo correction of template arguments to once again allow type names. by Kaelyn Uhrain · 13 years ago
  12. 2639ac6 Provide a way to disable auto-generation of preprocessed files during clang by Chad Rosier · 13 years ago
  13. f775c7b Make sure Stmt::dump() is included in libclang. by Argyrios Kyrtzidis · 13 years ago
  14. f4b7de1 Improve our handling of lambda expressions that occur within default by Douglas Gregor · 13 years ago
  15. b5f2c41 Also mark Type's dump() as 'used' to make it available in libclang. by Argyrios Kyrtzidis · 13 years ago
  16. 0ee7d94 Mark a few 'dump' methods as 'used' to make sure they are included in libclang by Argyrios Kyrtzidis · 13 years ago
  17. 552e299 Implement name mangling for lambda expressions that occur within the by Douglas Gregor · 13 years ago
  18. ccc1b5e Implement name mangling for lambda expressions that occur within the by Douglas Gregor · 13 years ago
  19. a4c29b6 [PCH] Recover gracefully if the ASTReader detects that a file is different by Argyrios Kyrtzidis · 13 years ago
  20. 50933e5 Make PreprocessorOptions::DetailedRecordIncludesNestedMacroExpansions false by default. by Argyrios Kyrtzidis · 13 years ago
  21. af30029 modern objc translator. Finish off first cut of the by Fariborz Jahanian · 13 years ago
  22. 9e8c92a Basic support for name mangling of C++11 lambda expressions. Because by Douglas Gregor · 13 years ago
  23. c93dc78 Basic: import IntrusiveRefCntPtr<> into clang namespace by Dylan Noblesmith · 13 years ago
  24. 0e65959 Implement a -gcc-toolchain command line option that does the same as by Rafael Espindola · 13 years ago
  25. 8602401 Implement constant expression support for __real__ and __imag__ on lvalue by Richard Smith · 13 years ago
  26. b673a41 Adopt ExprEngine and checkers to ObjC property refactoring. Everything was working, but now diagnostics are aware of message expressions implied by uses of properties. Fixes <rdar://problem/9241180>. by Ted Kremenek · 13 years ago
  27. 5f3c163 Implement #pragma redefine_extname. by David Chisnall · 13 years ago
  28. 999713e Rewrite variable capture within lambda expressions and blocks, by Douglas Gregor · 13 years ago
  29. 6893284 Unify our computation of the type of a captured reference to a by Douglas Gregor · 13 years ago
  30. e698a5c Change wording of warning about using __bridge casts in non-ARC. by Ted Kremenek · 13 years ago
  31. 213d70b Diagnose uses of deleted destructors and inaccessible defaulted destructors. by Richard Smith · 13 years ago
  32. 7d5088a Initial refactoring of 'ShouldDeleteSpecialMember', in preparation for providing by Richard Smith · 13 years ago
  33. 3133f79 Have conjured symbols depend on LocationContext, to add context sensitivity for functions called more than once. by Ted Kremenek · 13 years ago
  34. 32cf1f2 Basic code generation support for std::initializer_list. by Sebastian Redl · 13 years ago
  35. b3f323d Disambiguate between C++11 lambda expressions and C99 array by Douglas Gregor · 13 years ago
  36. a345edb Block expressions always have a prototyped function type; expose this by John McCall · 13 years ago
  37. 84fa9cd Add a castAs<U> accessor to CanQual<T>. by John McCall · 13 years ago
  38. 27dd7d9 Rework the Sema/AST/IRgen dance for the lambda closure type's by Douglas Gregor · 13 years ago
  39. 85b29a4 Reject continue/break statements within members of local functions nested within by Richard Smith · 13 years ago
  40. c9ecec4 Improve recovery for lambda expressions that have 'mutable' or a by Douglas Gregor · 13 years ago
  41. 2ac58b7 Revert "Move ExplodedNode reclaimation out of ExprEngine and into CoreEngine. Also have it based on adding predecessors/successors, not node allocation. No measurable performance change." by Ted Kremenek · 13 years ago
  42. b9c64d8 C++11 allows unions to have static data members. Remove the corresponding by Richard Smith · 13 years ago
  43. 437ee81 Move ExplodedNode reclaimation out of ExprEngine and into CoreEngine. Also have it based on adding predecessors/successors, not node allocation. No measurable performance change. by Ted Kremenek · 13 years ago
  44. 626719b Minor cleanup to node data structures in ExplodedGraph. No functionality change. by Ted Kremenek · 13 years ago
  45. a76879e Tweak the comment on the 'q' length modifier again. by Hans Wennborg · 13 years ago
  46. 3c15c43 Update comment as per Joerg's comment on r150697. by Hans Wennborg · 13 years ago
  47. c24a233 Allow thread safety attributes on function definitions. by DeLesley Hutchins · 13 years ago
  48. 32addd5 Format string analysis: give 'q' its own enumerator. by Hans Wennborg · 13 years ago
  49. 2aed8b8 Revert "Revert "Make CXXNewExpr contain only a single initialier, and not hold the used constructor itself."" by Sebastian Redl · 13 years ago
  50. 1548d14 Revert "Make CXXNewExpr contain only a single initialier, and not hold the used constructor itself." by Sebastian Redl · 13 years ago
  51. 5f688f4 Make CXXNewExpr contain only a single initialier, and not hold the used constructor itself. by Sebastian Redl · 13 years ago
  52. 74e1ad9 constexpr tidyups: by Richard Smith · 13 years ago
  53. c874ca1 Fix the RecursiveASTVisitor to not traverse C++ default parameters twice. by Argyrios Kyrtzidis · 13 years ago
  54. f6e2e02 Implicitly define a lambda's conversion functions (to function by Douglas Gregor · 13 years ago
  55. 9f02d6d Mark the parenthesized array member initialization diagnostic as DefaultError, by Richard Smith · 13 years ago
  56. 0f163e9 Support GCC's bug^Wextension allowing class array members to be initalized by a by Richard Smith · 13 years ago
  57. 6c44886 Provide common include for all diagnostic headers. by David Blaikie · 13 years ago
  58. ceb1565 Remove the unuseful -fdiagnostics-show-name by David Blaikie · 13 years ago
  59. e4e68d4 When overload resolution picks an implicitly-deleted special member by Douglas Gregor · 13 years ago
  60. d226e5c Tweak comment above DiagGroup<"all">. by Nico Weber · 13 years ago
  61. 87c5150 A little more lambda capture initialization diagnostics cleanup by Douglas Gregor · 13 years ago
  62. 4773654 Introduce a new initialization entity for lambda captures, and by Douglas Gregor · 13 years ago
  63. 793cd1c Specialize noreturn diagnostics for lambda expressions. by Douglas Gregor · 13 years ago
  64. 4e88df7 Specialize the diagnostic complaining about conflicting types of by Douglas Gregor · 13 years ago
  65. 81f3bff Implement code completion support for lambda capture lists. by Douglas Gregor · 13 years ago
  66. be6126a Make -Wformat fix-its preserve original conversion specifiers. by Hans Wennborg · 13 years ago
  67. 83587db Implement DR1454. This allows all intermediate results in constant expressions by Richard Smith · 13 years ago
  68. 4d4e5c1 Split reinterpret_casts of member pointers out from CK_BitCast; this by John McCall · 13 years ago
  69. 011d8b9 Implement indexing support for lambdas in libclang (both kinds), as by Douglas Gregor · 13 years ago
  70. c6889e7 Implement C++ core issue 974, which permits default arguments for by Douglas Gregor · 13 years ago
  71. 58d2dbe [libclang] Indexing: only index implicit template instantiations via an opt-in indexing option. by Argyrios Kyrtzidis · 13 years ago
  72. 625bb56 Generalize -Wempty-body: warn when statement body is empty (closes: PR11329) by Dmitri Gribenko · 13 years ago
  73. 66c4040 [analyzer] Make Malloc Checker optimistic in presence of inlining. by Anna Zaks · 13 years ago
  74. 70488e2 Pending clear answer from WG21 on whether core issue 903 is intended to apply to by Richard Smith · 13 years ago
  75. 53393f2 Check the return type of lambda expressions. by Douglas Gregor · 13 years ago
  76. 75d8ba3 Warn about non-int main() results in GNU C mode instead of erroring. by John McCall · 13 years ago
  77. a736524 Implement support for lambda capture pack expansions, e.g., by Douglas Gregor · 13 years ago
  78. 63aae82 Use several weighted factors to determine typo candidate viablity. by Kaelyn Uhrain · 13 years ago
  79. 9d36f5d Implement AST (de-)serialization for lambda expressions. by Douglas Gregor · 13 years ago
  80. 8be51ea Refactor DiagnosticRenderer and SDiagsRenderer to have some functionality by Ted Kremenek · 13 years ago
  81. 6700d67 Add helper methods to StoredDiagnostic. by Ted Kremenek · 13 years ago
  82. 0bdb5aa Refactor out new function EmitInitializerForField from EmitMemberInitializer. The new function will be used to initialize the fields of lambda expressions. by Eli Friedman · 13 years ago
  83. 5ad3af9 Add a subgroup of -Wreturn-type, -Wreturn-type-c-linkage. by Matt Beaumont-Gay · 13 years ago
  84. dfca6f5 Introduce support for template instantiation of lambda by Douglas Gregor · 13 years ago
  85. 684a8e4 Remove unused diagnostics from include/clang/Basic/Diagnostic*.td files. by Dmitri Gribenko · 13 years ago
  86. c8bb3be [analyzer] Malloc checker: rework realloc handling: by Anna Zaks · 13 years ago
  87. 7ae282f Split the storage of lambda information between the LambdaExpr and the by Douglas Gregor · 13 years ago
  88. 9daa7bf Keep track of the set of array index variables we use when we by Douglas Gregor · 13 years ago
  89. da8962a Move the storage of lambda captures and capture initializers from by Douglas Gregor · 13 years ago
  90. 63d7ed8 StaticAnalyzer/Core: fix MSVC build by Dylan Noblesmith · 13 years ago
  91. 4ee01ef Fix typo in PrintfConversionSpecifier::isDoubleArg() by Hans Wennborg · 13 years ago
  92. 86c3ae4 Update constexpr implementation to match CWG's chosen approach for core issues by Richard Smith · 13 years ago
  93. 9ecb72a Move -Wdangling-else under -Wparentheses to be backwards compatibile with GCC. by David Blaikie · 13 years ago
  94. f8af982 Within the body of a lambda expression, decltype((x)) for an by Douglas Gregor · 13 years ago
  95. 6dc00f6 Proper initializer list support for new expressions and type construct expressions. Array new still missing. by Sebastian Redl · 13 years ago
  96. 3a45c0e Change the way we store initialization kinds so that all direct inits can distinguish between list and parens form. This allows us to correctly diagnose the last test cases from litb. by Sebastian Redl · 13 years ago
  97. 168319c Employ DirectList initialized entities to properly sort through some initialization edge cases. by Sebastian Redl · 13 years ago
  98. 5b9cc5d Represent C++ direct initializers as ParenListExprs before semantic analysis by Sebastian Redl · 13 years ago
  99. ecfcd56 Drive-by fix of incorrect diagnostic, and a test case for said diagnostic. The double error is unfortunate, but I really don't see an alternative whose effort is worth it. by Sebastian Redl · 13 years ago
  100. 9135930 Implement warning for non-wide string literals with an unexpected encoding. Downgrade error for non-wide character literals with an unexpected encoding to a warning for compatibility with gcc and older versions of clang. <rdar://problem/10837678>. by Eli Friedman · 13 years ago