1. b11e525 Seriously, are injected-class-names that hard? by Douglas Gregor · 13 years ago
  2. 25d0a0f Provide the __is_trivially_assignable type trait, which provides by Douglas Gregor · 13 years ago
  3. 860097c Two fixes to how we compute visibility: by Rafael Espindola · 13 years ago
  4. 7c07e96 Clang now supports lambda expressions. by Douglas Gregor · 13 years ago
  5. 5c89c39 Try to handle qualifiers more consistently for array InitListExprs. Fixes <rdar://problem/10907510>, and makes the ASTs a bit more self-consistent. by Eli Friedman · 13 years ago
  6. d81e961 Update parser's disambiguation to cope with braced function-style casts in by Richard Smith · 13 years ago
  7. 47611c8 Turned on support for __declspec(deprecated) in MS compatibility mode. by Aaron Ballman · 13 years ago
  8. 0d389b8 [analyzer] Invalidate the region passed to pthread_setspecific() call. by Anna Zaks · 13 years ago
  9. b45cfea Add a quick TODO. by Eric Christopher · 13 years ago
  10. fdc5d56 Fold debug scope emission into the cleanup scope. by Eric Christopher · 13 years ago
  11. 4d8b797 Revert r151172: Unwind path cleanup for array new list initializers. by Chad Rosier · 13 years ago
  12. 87cb5be [analyzer] Malloc cleanup: by Anna Zaks · 13 years ago
  13. 8a988c3 Revert part of r148839 and keep DefaultTargetTriple in the form adjusted by Joerg Sonnenberger · 13 years ago
  14. 72c88f1 modern objc translator. more writing of modern ivar access abi. by Fariborz Jahanian · 13 years ago
  15. 2dd17a1 [driver] Add a warning for when -mcpu= is specified without an argument. There by Chad Rosier · 13 years ago
  16. 5b38a0f Doug's review comments. by Sebastian Redl · 13 years ago
  17. 0f5a193 Unwind path cleanup for array new list initializers. by Sebastian Redl · 13 years ago
  18. 9203647 CodeGen for array new list initializers. Doesn't correctly clean up in the face of exceptions yet. by Sebastian Redl · 13 years ago
  19. b734e24 Teach overload resolution to prefer user-defined conversion via a by Douglas Gregor · 13 years ago
  20. 33deb35 Fix parsing and processing initializer lists in return statements and as direct member initializers. by Sebastian Redl · 13 years ago
  21. 7651742 Warn about non-standard format strings (pr12017) by Hans Wennborg · 13 years ago
  22. 341785e More ArrayRef-ification of methods. by Bill Wendling · 13 years ago
  23. 4fe5be0 ArrayRef-icize the function arguments. by Bill Wendling · 13 years ago
  24. 795b100 Use an ArrayRef when we can instead of passing in a SmallVectorImpl reference. by Bill Wendling · 13 years ago
  25. 428c620 Throw away stray CXXDefaultArgExprs. Fixes PR12061. by Sebastian Redl · 13 years ago
  26. d77177a In -fdelayed-template-parsing mode, reenter every scope when late parsing a templated function; (Not just the template parameter scope as previously). Also enter the scope stack in the correct order. by Francois Pichet · 13 years ago
  27. 0635aa7 Accept braced-init-lists in conditions, and, in passing, dramatically improve by Richard Smith · 13 years ago
  28. b1e3f32 Make sure null initialization in arrays works correctly with ARC types. <rdar://problem/10907547>. by Eli Friedman · 13 years ago
  29. ac1303e Generate an AST for the conversion from a lambda closure type to a by Douglas Gregor · 13 years ago
  30. e9ee382 Improve diagnostics a bit for bad member initializers, and fix an obscure bug involving packs. Fixes PR12049. by Eli Friedman · 13 years ago
  31. 60a1fa4 [analyzer] Malloc checker: mark 'strdup' and 'strndup' as allocators. by Anna Zaks · 13 years ago
  32. 6c60c8d Adding support for Microsoft's thiscall calling convention. Clang side of the patch. by Aaron Ballman · 13 years ago
  33. d9ab7bb [analyzer] Malloc: fix another false positive. by Anna Zaks · 13 years ago
  34. 5fdadf4 [analyzer] Change naming in bug reports "tainted" -> "untrusted" by Anna Zaks · 13 years ago
  35. 76f3f69 Implement C++11 [expr.call]p11: If the operand to a decltype-specifier is a by Richard Smith · 13 years ago
  36. e43fe99 Fix typo correction of template arguments to once again allow type names. by Kaelyn Uhrain · 13 years ago
  37. 2639ac6 Provide a way to disable auto-generation of preprocessed files during clang by Chad Rosier · 13 years ago
  38. 5731778 modern objc translator: fixes a bug where a class declaration with not by Fariborz Jahanian · 13 years ago
  39. e7b3fa7 objective-c modern translator. accessing ivars using modern abi - wip. by Fariborz Jahanian · 13 years ago
  40. fccfb62 In the conflict between C++11 [expr.prim.general]p4, which declares by Douglas Gregor · 13 years ago
  41. 51e47df Fix a crash in the diangostic code in EvalConstant. PR12043. by Eli Friedman · 13 years ago
  42. 977ea78 Don't crash on attempts to synthesize an invalid property. by John McCall · 13 years ago
  43. b09ab8c Only pop the expression evaluation context corresponding to a lambda by Douglas Gregor · 13 years ago
  44. e38fa18 Don't assume that a valid expression for the first part of a for-statement by Richard Smith · 13 years ago
  45. 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 · 13 years ago
  46. f4b7de1 Improve our handling of lambda expressions that occur within default by Douglas Gregor · 13 years ago
  47. f18a87b Allow linux builds to take advantage of libunwind to get unwind.h if by Jeffrey Yasskin · 13 years ago
  48. a7b07fd Remove comma from end of enum to silence build warning. by Craig Topper · 13 years ago
  49. 5878cbc Implement non-internal linkage for lambda closure types that need a by Douglas Gregor · 13 years ago
  50. 552e299 Implement name mangling for lambda expressions that occur within the by Douglas Gregor · 13 years ago
  51. 7f9b1d9 Have ScanReachableSymbols reported reachable regions. Fixes a false positive with nested array literals. <rdar://problem/10686586> by Ted Kremenek · 13 years ago
  52. ccc1b5e Implement name mangling for lambda expressions that occur within the by Douglas Gregor · 13 years ago
  53. ef78446 Emit the exact size for the invariant intrinsics. by Nick Lewycky · 13 years ago
  54. 9c1e1bd [analyzer] Make KeyChainAPI checker inlining-aware. by Anna Zaks · 13 years ago
  55. ee06539 Make RequireLiteralType work correctly with incomplete array types. PR12037. by Eli Friedman · 13 years ago
  56. a4c29b6 [PCH] Recover gracefully if the ASTReader detects that a file is different by Argyrios Kyrtzidis · 13 years ago
  57. ff23488 Fix a constexpr FIXME: When implicitly instantiating the primary template for an by Richard Smith · 13 years ago
  58. e86b9ea Formatting. by Eric Christopher · 13 years ago
  59. cd285d0 objc IRGen: force CSE of load of ivar offsets by setting by Fariborz Jahanian · 13 years ago
  60. a19581a [analyzer] Make Malloc aware of inter-procedural execution + basic tests. by Anna Zaks · 13 years ago
  61. bb2a686 [analyzer] Turn on by default the Malloc Checker and a couple of CString checks: by Anna Zaks · 13 years ago
  62. fa07ab5 Make sure that we set up the right declaration contexts when creating by Douglas Gregor · 13 years ago
  63. af30029 modern objc translator. Finish off first cut of the by Fariborz Jahanian · 13 years ago
  64. ee18803 When we resolve the type of an 'auto' variable, clear out the linkage by Douglas Gregor · 13 years ago
  65. 9e8c92a Basic support for name mangling of C++11 lambda expressions. Because by Douglas Gregor · 13 years ago
  66. 86211df Remove the type retaining from the clang frontend. This is now by Eric Christopher · 13 years ago
  67. 917bc8d Make forward declarations for objective-c types use the new by Eric Christopher · 13 years ago
  68. 83bc276 Deserialize the direct-initialization range of a "new" expression by Douglas Gregor · 13 years ago
  69. 1367c9b Fixing the working-directory option so that it stores the proper directory. by Aaron Ballman · 13 years ago
  70. c93dc78 Basic: import IntrusiveRefCntPtr<> into clang namespace by Dylan Noblesmith · 13 years ago
  71. 345032a Add 3dNOW intrinsic header to x86intrin.h, conditioned on __3dNOW__ to by Chandler Carruth · 13 years ago
  72. 19562c9 ObjCMessageExpr: Don't leave SelLocsKind uninitialized when the send is implicit. by Benjamin Kramer · 13 years ago
  73. 2b28bf1 Set the location of the template keyword when allocating a new TemplateIdAnnotation. by Benjamin Kramer · 13 years ago
  74. d2aea12 objective-c modern translator: comment out private ivars by Fariborz Jahanian · 13 years ago
  75. 772291a Emit a warning when list-initializing a std::initializer_list member. by Sebastian Redl · 13 years ago
  76. 972edf0 Make heap-allocation of std::initializer_list 'work'. by Sebastian Redl · 13 years ago
  77. 924db71 Make std::initializer_list member initializers 'work'. by Sebastian Redl · 13 years ago
  78. 24fe798 Refuse to compile global std::initializer_lists instead of doing completely the wrong thing. by Sebastian Redl · 13 years ago
  79. 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 · 13 years ago
  80. bac5cf4 Add a testcase for using objects with list-constructors, and fix a Sema crash by repeating an old hack. by Sebastian Redl · 13 years ago
  81. d2231c9 Fix a crash for nested initializer list initialization. Still does the wrong thing in CodeGen, in that it never destructs anything. by Sebastian Redl · 13 years ago
  82. e8e92b9 Remove dead code. by Ahmed Charles · 13 years ago
  83. 0e65959 Implement a -gcc-toolchain command line option that does the same as by Rafael Espindola · 13 years ago
  84. 99c06be Teach analyzer that blocks with no captures are globals. Fixes <rdar://problem/10348049>. by Ted Kremenek · 13 years ago
  85. 8602401 Implement constant expression support for __real__ and __imag__ on lvalue by Richard Smith · 13 years ago
  86. e215ba1 Fix crash in analyzer diagnostic generation involving subexpressions of OpaqueValueExpr not appearing in the ParentMap. Fixes <rdar://problem/10797980>. by Ted Kremenek · 13 years ago
  87. a979712 Teach analyzer about NSAutoreleasePool -allocWithZone:. Fixes <rdar://problem/10640253>. by Ted Kremenek · 13 years ago
  88. dfb80de Fix wrong-code bug: __imag on a scalar lvalue should produce a zero rvalue, by Richard Smith · 13 years ago
  89. 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
  90. b8197bc Default to not using __cxa_atexit on Solaris. by David Chisnall · 13 years ago
  91. d41854a Remove a debugging line accidentally left in the last commit. by David Chisnall · 13 years ago
  92. 5f3c163 Implement #pragma redefine_extname. by David Chisnall · 13 years ago
  93. 8b1d32bf Remove unused but set variable. by Benjamin Kramer · 13 years ago
  94. 999713e Rewrite variable capture within lambda expressions and blocks, by Douglas Gregor · 13 years ago
  95. 6893284 Unify our computation of the type of a captured reference to a by Douglas Gregor · 13 years ago
  96. b78ae97 Fix a problem in the GCC testsuite, exposed by r150557. Compound literals by Richard Smith · 13 years ago
  97. e61eb04 Add a bunch of missing calls to DiagnoseSentinelCalls. <rdar://problem/10885993>. by Eli Friedman · 13 years ago
  98. e698a5c Change wording of warning about using __bridge casts in non-ARC. by Ted Kremenek · 13 years ago
  99. 213d70b Diagnose uses of deleted destructors and inaccessible defaulted destructors. by Richard Smith · 13 years ago
  100. 7d5088a Initial refactoring of 'ShouldDeleteSpecialMember', in preparation for providing by Richard Smith · 13 years ago