1. 87aa2fb Remove duplicate includes. by Roman Divacky · 12 years ago
  2. 5cf1589 Fix regression in r170489: when instantiating a direct initializer which is a by Richard Smith · 12 years ago
  3. 9d08401 Extend checkUnsafeAssigns() to also handle assigning an object literal to a weak reference. by Ted Kremenek · 12 years ago
  4. b1ea510 Refactor checkUnsafeAssigns() to avoid code duplication with while loop. by Ted Kremenek · 12 years ago
  5. 0db661e Don't eagerly emit a global static merged with a local extern. by Rafael Espindola · 12 years ago
  6. 904a326 Revert "Warn if a __weak variable is initialized with an Objective-C object literal." by Ted Kremenek · 12 years ago
  7. 7c44106 Warn if a __weak variable is initialized with an Objective-C object literal. by Ted Kremenek · 12 years ago
  8. ad017fa Revert r170500. It over-zealously converted *ALL* things named Attributes, which is wrong here. by Bill Wendling · 12 years ago
  9. 277076a objective-C: Don't warn of unimplemented property of protocols in by Fariborz Jahanian · 12 years ago
  10. 094dbf9 Rename the 'Attributes' class to 'Attribute'. It's going to represent a single attribute in the future. by Bill Wendling · 12 years ago
  11. cd6d5f4 Fix assertion failure in self-host (and probably bogus template instantiation by Richard Smith · 12 years ago
  12. c83c230 PR13470: Ensure that copy-list-initialization isntantiates as by Richard Smith · 12 years ago
  13. 3bc93e3 Change DeclContextLookup(Const)Result to (Mutable)ArrayRef<NamedDecl*>, as per review discussion in r170365 by David Blaikie · 12 years ago
  14. b13621d Re-commit r170428 changes with Linux style file endings. by Guy Benyei · 12 years ago
  15. 7f92f2d Revert changes from r170428, as I accidentally changed the line endings of these files to Windows style. by Guy Benyei · 12 years ago
  16. 736104a Add OpenCL images as clang builtin types. by Guy Benyei · 12 years ago
  17. a7a2f2a Merge storage classes even when contexts don't match. by Rafael Espindola · 12 years ago
  18. 2fcff83 The underlying type for an enum should be an integer type, not another enum. by Eli Friedman · 12 years ago
  19. 8a0086c When warning about a missing prototype because a function declaration is missing 'void', insert a fixit to add the void. by Anders Carlsson · 12 years ago
  20. 355a166 IdentifierResolver: Remove an unnecessary include and an unused parameter. by Nico Weber · 12 years ago
  21. a9990e8 Have Sema::ActOnStartOfFunctionDef return the declaration that was passed it. by Argyrios Kyrtzidis · 12 years ago
  22. 3abc768 Remove code from Sema::ActOnStartOfFunctionTemplateDef that duplicates what by Argyrios Kyrtzidis · 12 years ago
  23. 6febf12 Using CanQualType::getAs<ArrayType> is unsafe; fix the code currently using it, by Eli Friedman · 12 years ago
  24. 0c252fa objc: DOn't complain if a (SEL) expression is typecast by Fariborz Jahanian · 12 years ago
  25. 206491d Add missing check for error return from DefaultLvalueConversion. Fixes <rdar://problem/12857416>. by Eli Friedman · 12 years ago
  26. 135aa60 [objc] For the ARC error that is emitted when a synthesized property implementation by Argyrios Kyrtzidis · 12 years ago
  27. acaf110 Speeds up parsing of global declarations in cases where the warning by Manuel Klimek · 12 years ago
  28. 86f6cf6 Don't complain about incomplete implementations for methods that are by Douglas Gregor · 12 years ago
  29. 1d28caf PR14558: Compute triviality of special members (etc) at the end of the class by Richard Smith · 12 years ago
  30. fff3248 Virtual method overrides can no longer have mismatched calling conventions. This fixes PR14339. by Aaron Ballman · 12 years ago
  31. 2801d9a Fix overload resolution for the initialization of a multi-dimensional by Richard Smith · 12 years ago
  32. afee0ff PR14550: If a system header contains a bogus constexpr function definition, by Richard Smith · 12 years ago
  33. bc2a35d Finish implementing 'selected constructor' rules for triviality in C++11. In by Richard Smith · 12 years ago
  34. 5579865 Remove some remnants of the assumption that there is at most one of each by Richard Smith · 12 years ago
  35. ac71351 Properly compute triviality for explicitly-defaulted or deleted special members. by Richard Smith · 12 years ago
  36. d5be2b5 Add a FIXME. by Richard Smith · 12 years ago
  37. d5bc867 Implement C++03 [dcl.init]p5's checking for value-initialization of references by Richard Smith · 12 years ago
  38. 12f37e4 Fix analysis based warnings so that all warnings are emitted when compiling by DeLesley Hutchins · 12 years ago
  39. 5046439 Per [dcl.fct.def.default]p1, don't allow variadic special members to be defaulted. by Richard Smith · 12 years ago
  40. 35f3f36 Add a bit on FunctionDecl/ObjCMethodDecl to indicate if there was a body by Argyrios Kyrtzidis · 12 years ago
  41. 4242740 Sema: Don't emit a warning when __func__ is used in a lambda outside of a function. by Benjamin Kramer · 12 years ago
  42. 030a664 Fix http://stackoverflow.com/questions/13521163 by Richard Smith · 12 years ago
  43. 2cd3440 Format strings: offer a cast to 'unichar' for %C in Objective-C contexts. by Jordan Rose · 12 years ago
  44. 17ddc54 Format strings: add more expression types that don't need parens to cast. by Jordan Rose · 12 years ago
  45. 448ac3e Format strings: a character literal should be printed with %c, not %d. by Jordan Rose · 12 years ago
  46. 37ec8d5 In C++, if we hit an error in the class-head, don't try to parse the class body. by Richard Smith · 12 years ago
  47. fb4afc2 Thread safety analysis: Add a new "beta" warning flag: -Wthread-safety-beta. by DeLesley Hutchins · 12 years ago
  48. 55fc873 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 12 years ago
  49. e5411b7 Consistently use 'needsImplicit<special member>' to determine whether we need by Richard Smith · 12 years ago
  50. 464a01a Fix the determination of whether a capture refers to an enclosing by Douglas Gregor · 12 years ago
  51. d87de7b Make -Wtautological-constant-out-of-range-compare behave sanely for enums with a signed fixed type. by Eli Friedman · 12 years ago
  52. 8b8a09e Merge function types in C. by Rafael Espindola · 12 years ago
  53. 8426890 Reject uses of __int128 on platforms that don't support it. Also move the ugly by Richard Smith · 12 years ago
  54. a70779f Fix crash-on-invalid. <rdar://problem/12765391>. by Eli Friedman · 12 years ago
  55. afb4918 The declaration of a special member can require overload resolution to be by Richard Smith · 12 years ago
  56. a70c3f8 Per C++11 [except.spec]p2, rvalue references are not permitted in exception specifications. by Richard Smith · 12 years ago
  57. 21173b1 PR14388: An array or function type in an exception specification should be by Richard Smith · 12 years ago
  58. f641166 PR13098: If we're instantiating an overloaded binary operator and we could by Richard Smith · 12 years ago
  59. acf796b Store on the CXXRecordDecl whether the class has, or would have, a copy by Richard Smith · 12 years ago
  60. 9d29543 Don't return a pointer to an UnresolvedSetImpl in the CXXRecordDecl interface, by Argyrios Kyrtzidis · 12 years ago
  61. b8abff6 C++ core issue 1344, PR10618: promote "addition of default argument makes this by Richard Smith · 12 years ago
  62. 84c7519 objective-C arc: Underline the selector when issuing by Fariborz Jahanian · 12 years ago
  63. 82c458e objective-C arc: load of a __weak object happens via call to by Fariborz Jahanian · 12 years ago
  64. d1bac8d Allow an ASTConsumer to selectively skip function bodies while parsing. Patch by Richard Smith · 12 years ago
  65. d0adeb6 Simplify checking for whether we should implicitly declare special members and by Richard Smith · 12 years ago
  66. 73ed67c PR14428: When instantiating a 'new' expression, if we had a non-dependent by Richard Smith · 12 years ago
  67. 8dbf697 Add r168519 back, but with a fix to also merge the used flag in variables. by Rafael Espindola · 12 years ago
  68. 6df81a9 Revert r168519, "Merge used flags so that we don't have to iterate on isUsed. With this change" by NAKAMURA Takumi · 12 years ago
  69. 63b6ebe Sema: Provide a valid source location when instantiating templates based on a CXXDefaultArgExpr. by Benjamin Kramer · 12 years ago
  70. 919b7e6 Merge used flags so that we don't have to iterate on isUsed. With this change by Rafael Espindola · 12 years ago
  71. 746619a Fix regression in r168477. Use canonical decl when looking for base class by Richard Smith · 12 years ago
  72. f62c690 Fix CXXRecordDecl::forallBases to not look through bases which are dependent by Richard Smith · 12 years ago
  73. 39ad0f0 SemaCXX: an enumeral type can be of character or boolean type in a C++11 enum class. Make sure we create a literal of the right type. by Benjamin Kramer · 12 years ago
  74. 0c5d005 Fix some trailing whitespace (on a blank line) to cycle/test bots. by David Blaikie · 12 years ago
  75. 1a5bd5d PR14381: Never skip constexpr function bodies when code-completing. We may need by Richard Smith · 12 years ago
  76. 728948f When adding a NamedDecl to a correction, add the underlying Decl (via by Kaelyn Uhrain · 12 years ago
  77. 898a7a2 Remove redundant (duplicated) check. by Dmitri Gribenko · 12 years ago
  78. 5fa6676 objective-C: Do not issue deprecated warning about implementation by Fariborz Jahanian · 12 years ago
  79. 4a9e60f Store this Decl* as a Decl* instead of a uintptr_t. No functionality change. by Nick Lewycky · 12 years ago
  80. 8f50b24 Take into account the zero sign bit for positive numbers when computing the bit by Richard Trieu · 12 years ago
  81. 426391c A step towards sorting out handling of triviality of special members in C++11. by Richard Smith · 12 years ago
  82. 1b48633 Do not cache a pointer to ExprEvalContexts.back(). by Benjamin Kramer · 12 years ago
  83. 621ba4f Teach the uninitialized field warning about anonymous structs and union members. by Nick Lewycky · 12 years ago
  84. 5d1cf4f Fix an off-by-one error by switching < to <= in -Wtautological-constant-out-of-range-compare and added test case. by Richard Trieu · 12 years ago
  85. d653701 Per [basic.lookup.classref]p3, in an expression of the form p->~type-name, the by Richard Smith · 12 years ago
  86. ebbcd1d Fix DiagnoseBitwisePrecedence so it doesn't cast "-1" to the type by Eli Friedman · 12 years ago
  87. 526e627 Improve -Wtautological-constant-out-of-range-compare by taking into account by Richard Trieu · 12 years ago
  88. accaf19 s/tranform/transform/ by Benjamin Kramer · 12 years ago
  89. 4a03022 When we have a MemberExpr referring to an overloaded static member function, by Richard Smith · 12 years ago
  90. 49193c7 SemaTemplateDeduction.cpp: Prune two obsolete descriptions. [-Wdocumentation] by NAKAMURA Takumi · 12 years ago
  91. 66cff72 Provide the correct mangling and linkage for certain unnamed nested classes. by David Blaikie · 12 years ago
  92. 8c88953 Remove another questionable use of hasTrivial*. The relevant thing for this by Richard Smith · 12 years ago
  93. b8a8de3 Accept and pass arguments to __unknown_anytype in argument by John McCall · 12 years ago
  94. 25f071e Don't try to save the assigned value in a Objective-C property assignment by Eli Friedman · 12 years ago
  95. 97c81bf For classes that have the warn_unused_result attribute, don't apply the by Kaelyn Uhrain · 12 years ago
  96. 8682b93 Copy the decls returned by DeclContext::lookup_result to a by Argyrios Kyrtzidis · 12 years ago
  97. 044c8aa Fix some wrong-code bugs in implicitly-defined assignment operators: by Richard Smith · 12 years ago
  98. d449c79 A couple of small fixes to r167783 by Kaelyn Uhrain · 12 years ago
  99. d05df51 When filtering the list of associated namespaces so that we don't suggest people by Nick Lewycky · 12 years ago
  100. 51ceb7b Enable C++11 attribute syntax for warn_unused_result and allow it to be by Kaelyn Uhrain · 12 years ago