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