1. f57c413 When calling a non variadic format function(vprintf, vscanf, NSLogv, …), warn if the format string argument is a parameter that is not itself declared as a format string with compatible format. by Jean-Daniel Dupas · 12 years ago
  2. f4b7de1 Improve our handling of lambda expressions that occur within default by Douglas Gregor · 12 years ago
  3. 5878cbc Implement non-internal linkage for lambda closure types that need a by Douglas Gregor · 12 years ago
  4. 450301e Add a test case for r150976. by Nico Weber · 12 years ago
  5. 552e299 Implement name mangling for lambda expressions that occur within the by Douglas Gregor · 12 years ago
  6. c9e0f92 Adding a test case for the working-directory fix by Aaron Ballman · 12 years ago
  7. 7f9b1d9 Have ScanReachableSymbols reported reachable regions. Fixes a false positive with nested array literals. <rdar://problem/10686586> by Ted Kremenek · 12 years ago
  8. ccc1b5e Implement name mangling for lambda expressions that occur within the by Douglas Gregor · 12 years ago
  9. ef78446 Emit the exact size for the invariant intrinsics. by Nick Lewycky · 12 years ago
  10. 3620547 [analyzer] + a couple more malloc tests. by Anna Zaks · 12 years ago
  11. 9c1e1bd [analyzer] Make KeyChainAPI checker inlining-aware. by Anna Zaks · 12 years ago
  12. ee06539 Make RequireLiteralType work correctly with incomplete array types. PR12037. by Eli Friedman · 12 years ago
  13. ff23488 Fix a constexpr FIXME: When implicitly instantiating the primary template for an by Richard Smith · 12 years ago
  14. cd285d0 objc IRGen: force CSE of load of ivar offsets by setting by Fariborz Jahanian · 12 years ago
  15. a19581a [analyzer] Make Malloc aware of inter-procedural execution + basic tests. by Anna Zaks · 12 years ago
  16. bb2a686 [analyzer] Turn on by default the Malloc Checker and a couple of CString checks: by Anna Zaks · 12 years ago
  17. fa07ab5 Make sure that we set up the right declaration contexts when creating by Douglas Gregor · 12 years ago
  18. af30029 modern objc translator. Finish off first cut of the by Fariborz Jahanian · 12 years ago
  19. ee18803 When we resolve the type of an 'auto' variable, clear out the linkage by Douglas Gregor · 12 years ago
  20. be580e5 Make test case less sensitive to metadata numbering. by Chad Rosier · 12 years ago
  21. 9e8c92a Basic support for name mangling of C++11 lambda expressions. Because by Douglas Gregor · 12 years ago
  22. 86211df Remove the type retaining from the clang frontend. This is now by Eric Christopher · 12 years ago
  23. 83bc276 Deserialize the direct-initialization range of a "new" expression by Douglas Gregor · 12 years ago
  24. 345032a Add 3dNOW intrinsic header to x86intrin.h, conditioned on __3dNOW__ to by Chandler Carruth · 12 years ago
  25. 607098c Make the regular expressions in this test more narrow to ensure we're by Chandler Carruth · 12 years ago
  26. 772291a Emit a warning when list-initializing a std::initializer_list member. by Sebastian Redl · 12 years ago
  27. 4b45d7f Harden test against for operator new(unsigned int). by Benjamin Kramer · 12 years ago
  28. 972edf0 Make heap-allocation of std::initializer_list 'work'. by Sebastian Redl · 12 years ago
  29. 924db71 Make std::initializer_list member initializers 'work'. by Sebastian Redl · 12 years ago
  30. af130fd Get recursive initializer lists to work and add a test. Codegen of std::initializer_list is now complete. Onward to array new. by Sebastian Redl · 12 years ago
  31. bac5cf4 Add a testcase for using objects with list-constructors, and fix a Sema crash by repeating an old hack. by Sebastian Redl · 12 years ago
  32. 25e640a Add a testcase to show that temporaries from the initializer list are destroyed correctly. by Sebastian Redl · 12 years ago
  33. b859d50 Add a testcase for start+end implementations of std::initializer_list. by Sebastian Redl · 12 years ago
  34. 49c6039 Don't check for /lib and /usr/lib. by Rafael Espindola · 12 years ago
  35. ab1cc02 Our handling of variables in FileCheck looks really broken on windws. Just by Rafael Espindola · 12 years ago
  36. 5bbc966 Add an extra CHECK line to make sure TOOLCHAIN2 matches just the path prefix. by Rafael Espindola · 12 years ago
  37. 8c28fc0 Looks like we use forward slashes for header search but back slashes for by Rafael Espindola · 12 years ago
  38. fb50ebf Try to match the linker being named ld.exe. Second try at fixing the windows bots. by Rafael Espindola · 12 years ago
  39. 358030c Don't assume a path starts with a /. Should fix the windows bot. by Rafael Espindola · 12 years ago
  40. 0e65959 Implement a -gcc-toolchain command line option that does the same as by Rafael Espindola · 12 years ago
  41. 99c06be Teach analyzer that blocks with no captures are globals. Fixes <rdar://problem/10348049>. by Ted Kremenek · 12 years ago
  42. 8602401 Implement constant expression support for __real__ and __imag__ on lvalue by Richard Smith · 12 years ago
  43. e215ba1 Fix crash in analyzer diagnostic generation involving subexpressions of OpaqueValueExpr not appearing in the ParentMap. Fixes <rdar://problem/10797980>. by Ted Kremenek · 12 years ago
  44. a979712 Teach analyzer about NSAutoreleasePool -allocWithZone:. Fixes <rdar://problem/10640253>. by Ted Kremenek · 12 years ago
  45. 5550a2f Add analyzer test for using of C++ references with ObjC object pointers, reported in <rdar://problem/10569024>. by Ted Kremenek · 12 years ago
  46. dfb80de Fix wrong-code bug: __imag on a scalar lvalue should produce a zero rvalue, by Richard Smith · 12 years ago
  47. 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 · 12 years ago
  48. 5f3c163 Implement #pragma redefine_extname. by David Chisnall · 12 years ago
  49. 999713e Rewrite variable capture within lambda expressions and blocks, by Douglas Gregor · 12 years ago
  50. 6893284 Unify our computation of the type of a captured reference to a by Douglas Gregor · 12 years ago
  51. b78ae97 Fix a problem in the GCC testsuite, exposed by r150557. Compound literals by Richard Smith · 12 years ago
  52. e61eb04 Add a bunch of missing calls to DiagnoseSentinelCalls. <rdar://problem/10885993>. by Eli Friedman · 12 years ago
  53. e698a5c Change wording of warning about using __bridge casts in non-ARC. by Ted Kremenek · 12 years ago
  54. 213d70b Diagnose uses of deleted destructors and inaccessible defaulted destructors. by Richard Smith · 12 years ago
  55. 7d5088a Initial refactoring of 'ShouldDeleteSpecialMember', in preparation for providing by Richard Smith · 12 years ago
  56. 7ff0c5d Add in a caching mechanism so that forward declarations are replaced by Eric Christopher · 12 years ago
  57. d8a8a3b [analyzer] Malloc Checker more tests. by Anna Zaks · 12 years ago
  58. f0dfc9c [analyzer] Fix another false positive in the Malloc Checker, by making by Anna Zaks · 12 years ago
  59. 00a8c3f Don't emit optimization-specific intrinsic at -O0. by Richard Smith · 12 years ago
  60. 1f27805 Don't allow non-empty ParenListExprs as array-new initializers. by Sebastian Redl · 12 years ago
  61. 32cf1f2 Basic code generation support for std::initializer_list. by Sebastian Redl · 12 years ago
  62. abb9432 The clang half of r150794: after the construction of a global or static const by Richard Smith · 12 years ago
  63. a9b21d2 Bug fix: do not emit static const local variables with mutable members by Richard Smith · 12 years ago
  64. e15c712 When performing IRGen on a global, emit it as a constant if: by Richard Smith · 12 years ago
  65. bd64520 Only add 'const' to the type of variables captured in a lambda when by Douglas Gregor · 12 years ago
  66. b3f323d Disambiguate between C++11 lambda expressions and C99 array by Douglas Gregor · 12 years ago
  67. f3908f2 Make sure all remaining parts of the constant evaluator are aware that an array by Richard Smith · 12 years ago
  68. de5d3c7 Whether an argument is required (in contrast with being an by John McCall · 12 years ago
  69. 27dd7d9 Rework the Sema/AST/IRgen dance for the lambda closure type's by Douglas Gregor · 12 years ago
  70. 92dc035 Tests for the fixits which Doug added in r150727. by Richard Smith · 12 years ago
  71. 85b29a4 Reject continue/break statements within members of local functions nested within by Richard Smith · 12 years ago
  72. ce582fe PR12012: Fix a regression in r150419 where we would try (and fail) to by Richard Smith · 12 years ago
  73. 9965dea Reapply r150631: by Eric Christopher · 12 years ago
  74. 22cfaf5 Elide copy construction in new expressions. PR11757. by Eli Friedman · 12 years ago
  75. 3336353 Avoid infinite mutual recursion in DiagnoseInvalidRedeclaration. by Kaelyn Uhrain · 12 years ago
  76. ad901a6 [analyzer] MallocChecker: more tests. by Anna Zaks · 12 years ago
  77. febdc32 [analyzer] Malloc Checker: Clean up bug naming: by Anna Zaks · 12 years ago
  78. fe57160 [analyzer] Malloc Checker: Make the diagnostic visitor handle the case by Anna Zaks · 12 years ago
  79. c9ecec4 Improve recovery for lambda expressions that have 'mutable' or a by Douglas Gregor · 12 years ago
  80. 7bdc152 Lambda closure types are always considered to be like "local" classes, by Douglas Gregor · 12 years ago
  81. 449d4f0 Make sure we still reject static data members in anonymous unions in C++11. by Richard Smith · 12 years ago
  82. b9c64d8 C++11 allows unions to have static data members. Remove the corresponding by Richard Smith · 12 years ago
  83. c7b55fc Fix this test to work with and without Asserts mode. by Dan Gohman · 12 years ago
  84. 8f70bda In Objective-C++, allow the keyword 'class' to be used as a property by Douglas Gregor · 12 years ago
  85. f11641a If code completion patterns are not enabled, use simpler else/else if by Douglas Gregor · 12 years ago
  86. dd5756c Minor fix to template instantiation, which properly instantiates by DeLesley Hutchins · 12 years ago
  87. 2f13bec Thread-safety analysis: Disable checking inside constructors, destructors, lock, and unlock functions by DeLesley Hutchins · 12 years ago
  88. 4bda3ec Thread-Safety: added support for 'this' as a lock expression. by DeLesley Hutchins · 12 years ago
  89. c24a233 Allow thread safety attributes on function definitions. by DeLesley Hutchins · 12 years ago
  90. 32addd5 Format string analysis: give 'q' its own enumerator. by Hans Wennborg · 12 years ago
  91. bd45d25 Proper checking of list-initializers for array new expressions. by Sebastian Redl · 12 years ago
  92. 2aed8b8 Revert "Revert "Make CXXNewExpr contain only a single initialier, and not hold the used constructor itself."" by Sebastian Redl · 12 years ago
  93. 1548d14 Revert "Make CXXNewExpr contain only a single initialier, and not hold the used constructor itself." by Sebastian Redl · 12 years ago
  94. 5f688f4 Make CXXNewExpr contain only a single initialier, and not hold the used constructor itself. by Sebastian Redl · 12 years ago
  95. 13ca534 Fix test to not depend upon metadata numbers. by Bill Wendling · 12 years ago
  96. b1612cb test/CodeGenObjC/arc-no-arc-exceptions.m: Disable it at -Asserts for now. by NAKAMURA Takumi · 12 years ago
  97. a2d7dfa Shift Microsoft enum extensions from -fms-extensions to -fms-compatibility, so -fms-extensions doesn't affect enum semantics in incompatible ways. <rdar://problem/10657186>. by Eli Friedman · 12 years ago
  98. 5a0917d [analyzer] Diagnostics: Ensure that the default end of diagnostic path by Anna Zaks · 12 years ago
  99. ac59300 [analyzer] Malloc Checker: Give up when a pointer escapes into a struct. by Anna Zaks · 12 years ago
  100. 74e1ad9 constexpr tidyups: by Richard Smith · 12 years ago