1. 4d8d22b Extend CXXRecordDecl with a function that determines the mapping from by Douglas Gregor · 12 years ago
  2. 864b1cf Update to new resolution for DR1458. When taking the address of an object of by Richard Smith · 12 years ago
  3. b880609 Remove stray semi-colon. by Daniel Dunbar · 12 years ago
  4. 0337241 Move -Wswitch from -Wmost to -Wall, consitent with GCC. by David Blaikie · 12 years ago
  5. d6cf912 Revert r145999. This turned out to be a bad idea. Unfortunately, 'id' is used so profusely by Ted Kremenek · 12 years ago
  6. 572ae0a Make sure we convert struct layout pragmas to attributes for class templates the same way we do for non-template classes. <rdar://problem/10791194>. by Eli Friedman · 12 years ago
  7. f8b1c31 [analyzer] MallocChecker: add a list of false positives based on running by Anna Zaks · 12 years ago
  8. e9ef562 [analyzer] MallocChecker Cleanup - harden against crashes, fix an error by Anna Zaks · 12 years ago
  9. 42e9a35 objc translator: mode modern abi stuff. by Fariborz Jahanian · 12 years ago
  10. a4dc693 Remove evil const_cast that's not needed anymore. by Bill Wendling · 12 years ago
  11. 3e78b19 Switching to using dyn_cast_or_null, and fixing line endings in the test case. by Aaron Ballman · 12 years ago
  12. 3964e62 Use SmallVector when we can instead of std::vector. by Bill Wendling · 12 years ago
  13. 10520d7 [analyzer] Proactively avoid inlining vararg functions and blocks until we properly support them. by Ted Kremenek · 12 years ago
  14. bb3d14e objc: If a method is not implemented in the category implementation but by Fariborz Jahanian · 12 years ago
  15. 7badd24 Make sure a variable with a C++ direct initializer triggers jump scope checking. Fixes PR10620 / <rdar://problem/9958362> . by Eli Friedman · 12 years ago
  16. 8f79e3f examples/analyzer-plugin/: unbreak build by Dylan Noblesmith · 12 years ago
  17. 3d9000d cmake: create a relative symlink to clang, not absolute by Dylan Noblesmith · 12 years ago
  18. a34e921 Class objects passed by value follow the same rules as structure objects. by Akira Hatanaka · 12 years ago
  19. f94d392 Kill the brief and full explanation fields from StaticDiagInfoRec. They were unused and wasted space for nothing. by Benjamin Kramer · 12 years ago
  20. da54ff3 Fix bugs in function MipsABIInfo::returnAggregateInRegs. Functions returning by Akira Hatanaka · 12 years ago
  21. a0c2b21 Don't allow deduction of a lambda result type from an initializer by Douglas Gregor · 12 years ago
  22. 8e4bc1e [libclang] Add a libclang test I neglected to commit. by Argyrios Kyrtzidis · 12 years ago
  23. 91d521d [PCH] Add a PCH test. by Argyrios Kyrtzidis · 12 years ago
  24. 8d9bd65 Tests for C++ [expr.prim.lambda]p5. We already implement all of these by Douglas Gregor · 12 years ago
  25. bf020bb Getting Started: Add a missing "cd ../..". by Benjamin Kramer · 12 years ago
  26. e7d923d Updated information on how to perform command line testing on Windows when built from MSVC. by Aaron Ballman · 12 years ago
  27. 7fb4900 Remove unused fun. by Benjamin Kramer · 12 years ago
  28. 54042f1 Implement return type deduction for lambdas per C++11 by Douglas Gregor · 12 years ago
  29. 760b37b Restore the appropriate lexical declaration context for a lambda's by Douglas Gregor · 12 years ago
  30. b326ca8 Remove the "unsupported" error for lambda expressions. It's annoying, by Douglas Gregor · 12 years ago
  31. 7e545d9 Add a test for the non-aggregaticity of lambda types per C++11 by Douglas Gregor · 12 years ago
  32. e2c5913 Implement C++ [expr.prim.lambda]p2, which bans lambda expressions in by Douglas Gregor · 12 years ago
  33. 621fc4b [PCH] Add some comments, per Ted's request. by Argyrios Kyrtzidis · 12 years ago
  34. 44d2dbd Fix ASTReader::FinishedDeserializing(). by Argyrios Kyrtzidis · 12 years ago
  35. 3b8e197 Don't cache the artificial type for the this pointer, there's no by Eric Christopher · 12 years ago
  36. f8c17b7 [analyzer] MallocChecker: address a diagnostic "fixme". by Anna Zaks · 12 years ago
  37. 30ecfad DR1359: A constexpr constructor does not need to initialize an empty struct or by Richard Smith · 12 years ago
  38. ff3b9fd [analyzer] Add custom path diagnostic to the Malloc Checker. by Anna Zaks · 12 years ago
  39. cdfec5e [analyzer] MallocChecker cleanup, more tests. by Anna Zaks · 12 years ago
  40. 53a8b97 [PCH] Set the DeclContext before doing any deserialization, to make sure internal by Argyrios Kyrtzidis · 12 years ago
  41. b9da557 Correct comment Clang C++ use in production. by David Blaikie · 12 years ago
  42. f8823e7 Use RAII object for cleanups. by Eli Friedman · 12 years ago
  43. 4c5d8af Refactor lambda IRGen so AggExprEmitter::VisitLambdaExpr does the right thing. by Eli Friedman · 12 years ago
  44. b4e5e28 CWG issue 1405: mutable members are allowed in literal types, but can't undergo by Richard Smith · 12 years ago
  45. 0ca7e8b Attempting to initialize a union member that does not exist no longer crashes. by Aaron Ballman · 12 years ago
  46. c6a6369 Basic IRGen for LambdaExprs with captures. by Eli Friedman · 12 years ago
  47. b30be29 A tiny bit more lambda IRGen. by Eli Friedman · 12 years ago
  48. cdd1c2e Fix a typo in the LambdaExpr class. by Eli Friedman · 12 years ago
  49. 18fe084 Implement capture-by-copy for arrays in lambdas. by Douglas Gregor · 12 years ago
  50. 4bbb850 [PCH] Avoid using Decl::setAttrs() and Decl::setLexicalDeclContext() from the ASTReaderDecl by Argyrios Kyrtzidis · 12 years ago
  51. 5e058eb Don't complain about the lack of a constructor for a lambda expression. They are constructed in different ways by Douglas Gregor · 12 years ago
  52. 20f87a4 When we create a non-static data member in the closure object for a by Douglas Gregor · 12 years ago
  53. 1f9a5db Factor the logic for capturing variables in a lambda into its own by Douglas Gregor · 12 years ago
  54. 630d5ff Along the error path for lambdas, mark the lambda class as invalid and finalize it by Douglas Gregor · 12 years ago
  55. dcffcbf Fix yet one more test by Douglas Gregor · 12 years ago
  56. 2c0bf24 Adding support for warning when a non-C compatible user-defined type is returned from an extern "C" function. by Aaron Ballman · 12 years ago
  57. 7f99f43 Fix tests for r150123 by Douglas Gregor · 12 years ago
  58. 503384f Various interrelated cleanups for lambdas: by Douglas Gregor · 12 years ago
  59. 91c2a11 [analyzer] MallocChecker: implement pessimistic version of the checker, by Anna Zaks · 12 years ago
  60. 231361a [analyzer] Split the MallocChecker into two versions - pessimistic and by Anna Zaks · 12 years ago
  61. af84f8f Remove explicit delete of PathDiagnosticMacroPiece, as it is now reference counted. by Ted Kremenek · 12 years ago
  62. e0adbd8 last piece of metadata to complete modern metadata for protocol definitions. by Fariborz Jahanian · 12 years ago
  63. 6d2f0f5 Minor comment fix by Douglas Gregor · 12 years ago
  64. e2a7ad0 Factor C++11 lambda expressions implementation into a separate by Douglas Gregor · 12 years ago
  65. 1e3767a When computing the type of a local variable reference within a lambda, by Douglas Gregor · 12 years ago
  66. 76e3da5 When completing a lambda expression, make sure to check and attach the by Douglas Gregor · 12 years ago
  67. b319e02 [analyzer] MallocChecker: convert from using evalCall to post visit of CallExpr. by Anna Zaks · 12 years ago
  68. da9624a More rewriting of objective-c moderin abi metadata. by Fariborz Jahanian · 12 years ago
  69. 66b0eba Fixing hex floating literal support so that it handles 0x.2p2 properly. by Aaron Ballman · 12 years ago
  70. af2771b CodeGen: Move EHPersonality from CGException.h into the cpp file, it has no other users. by Benjamin Kramer · 12 years ago
  71. 2fd5983 Implement DR1458: Taking the address of an object of incomplete class type is by Richard Smith · 12 years ago
  72. cfa8e65 Remove vperm2f* and vperm2i builtins. Same effect can be achieved with builtin_shufflevector. by Craig Topper · 12 years ago
  73. 3f83d0d Add more testing for r149776. by Richard Smith · 12 years ago
  74. 925d8e7 Implement the agreed resolution to DR1457: a signed left shift of a 1 bit into by Richard Smith · 12 years ago
  75. 31a3702 A little bit of lambda IRGen. by Eli Friedman · 12 years ago
  76. 10c57a8 Remove vpermilp* builtins. Same effect can be achieved with builtin_shufflevector. by Craig Topper · 12 years ago
  77. 1a2b8e2 Move -Wcovered-switch-default out of -Wswitch (and -Wall), and make it an opt-in warning. by Ted Kremenek · 12 years ago
  78. 802e024 Change PathDiagnosticPieces to be reference counted (simplifying their management), and introduce 'PathPieces' as a common container for PathDiagnosticPieces. by Ted Kremenek · 12 years ago
  79. eb2303c Refactor pieces of PathDiagnostic into its own data structure. No functionality change. by Ted Kremenek · 12 years ago
  80. 59a839c Make sure template argument deduction is consistently performed in an unevaluated context. by Eli Friedman · 12 years ago
  81. 7b318d1 [libclang] Indexing: When suppressing references, suppress references by Argyrios Kyrtzidis · 12 years ago
  82. 9caf440 Constify the getClassName routine and variables that come out of it, by Eric Christopher · 12 years ago
  83. 526cdfb Do not return records with non trivial destructors or copy constructors in by Akira Hatanaka · 12 years ago
  84. 46e7547 [libclang] For CXXOperatorCallExprs, give a valid source location to the DeclRefExpr by Argyrios Kyrtzidis · 12 years ago
  85. 82848c2 modern objc rewriter: mode metadata stuff. wip. by Fariborz Jahanian · 12 years ago
  86. d85bf9d Only complain about __strong __strong id, not __strong SomeStrongTypedef by John McCall · 12 years ago
  87. 200fa53 Revise the SplitQualType interface to make it its own thing instead of by John McCall · 12 years ago
  88. 531b1a9 Whitespace. by Eric Christopher · 12 years ago
  89. 2f764a9 Use the new forward declaration scheme for records. Also add more by Eric Christopher · 12 years ago
  90. 53bc518 Remove tabs. by Devang Patel · 12 years ago
  91. fd5a5f5 If a struct needs to be laid out, and it has not by Sean Callanan · 12 years ago
  92. da35eac modern objc abi rewriter: mode protocol metadata for modern objc abi. by Fariborz Jahanian · 12 years ago
  93. dfaee49 Fix indentation and an 80-column violation. by Chad Rosier · 12 years ago
  94. 2837a2f non-literal strftime format string is not unsafe. by Jean-Daniel Dupas · 12 years ago
  95. d089008 [libclang] Do not index implicit C++ member functions. rdar://10769813 by Argyrios Kyrtzidis · 12 years ago
  96. d7a3e2c Revert my patches which removed Diagnostic.h includes by moving some operator overloads out of line. by Benjamin Kramer · 12 years ago
  97. 77e4bca objc rewriter: modern metadata for protocol decls. wip. by Fariborz Jahanian · 12 years ago
  98. 3f22509 In r149662, setDiagnosticMapping was modified to not allow warnings mapped to by Chad Rosier · 12 years ago
  99. 6bd17d2 Make use of const-correct ParseCommandLineOptions by David Blaikie · 12 years ago
  100. 52aabaf Implements support of format_arg attribute on C++ member. by Jean-Daniel Dupas · 12 years ago