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