1. 714fcc1 Fix regression in r172376. Don't try to detect missing 'constexpr' specifiers by Richard Smith · 12 years ago
  2. f7a0527 Accept [[gnu::*]] for all __attribute__((*))s which are: by Richard Smith · 12 years ago
  3. 21c8fa8 PR12008: defer adding the implicit 'const' to a constexpr member function until by Richard Smith · 12 years ago
  4. 1c030e9 ArrayRef'ize Sema APIs related to format string checking by Dmitri Gribenko · 12 years ago
  5. a4fa900 Remove some duplication in the handling of __attribute__((ext_vector_size(N))). by Richard Smith · 12 years ago
  6. cfa88f8 Remove useless 'llvm::' qualifier from names like StringRef and others that are by Dmitri Gribenko · 12 years ago
  7. 838dc59 Disable caching of visibility. by Rafael Espindola · 12 years ago
  8. 7a525ac Fix a regression from 171193: main cannot be overloaded. by Rafael Espindola · 12 years ago
  9. ca2ab45 Provide Decl::getOwningModule(), which determines the (sub)module in by Douglas Gregor · 12 years ago
  10. 193649c Only produce one -Wc++98-compat warning when initializing a reference from an init list with multiple elements. by Richard Smith · 12 years ago
  11. c3cd6f7 Fix -Wunused-comparison for comparisons in arguments to function-like macros. by Matt Beaumont-Gay · 12 years ago
  12. 06d8c60 Constify parameter of clang::getCursorKindForDecl by Dmitri Gribenko · 12 years ago
  13. 294ddc6 Reject incompatible redeclarations of extern C symbols. by Rafael Espindola · 12 years ago
  14. 601e6e8 Fixed an assertion failure triggered by invalid code. by Enea Zaffanella · 12 years ago
  15. 5ea6ef4 Truth in advertising: LocallyScopedExternalDecls actually only contains by Richard Smith · 12 years ago
  16. 3973f28 [ms-inline asm] Extend the inline asm Sema lookup interface to determine if the by Chad Rosier · 12 years ago
  17. f6e65cc Provide a better warning when case value overflows. // rdar://11577384 by Fariborz Jahanian · 12 years ago
  18. a18e70b Issue warning when case value is too large to fit by Fariborz Jahanian · 12 years ago
  19. 7dc80e1 When name lookup for a redeclaration finds declarations that are known by Douglas Gregor · 12 years ago
  20. e178e70 put back diagnostics when flexible members are captured in lambdas. by Fariborz Jahanian · 12 years ago
  21. b20eb10 Fix typo (again). by Fariborz Jahanian · 12 years ago
  22. 4b3040f Remove lambda from my last patch. by Fariborz Jahanian · 12 years ago
  23. 456cfc0 Fixes typo in comment. by Fariborz Jahanian · 12 years ago
  24. 9c0816f objectiveC blocks: It is impractical to capture by Fariborz Jahanian · 12 years ago
  25. d130fd2 Clear LV cache when dropping availability attributes. by Rafael Espindola · 12 years ago
  26. 51be6e3 Tighten types a bit. No functionality change. by Rafael Espindola · 12 years ago
  27. 8c4222a Don't crash when trying to apply the availability attribute to a block. by Rafael Espindola · 12 years ago
  28. fc35cbc Tighten types a bit. No functionality change. by Rafael Espindola · 12 years ago
  29. a6d2020 Move loop variable update. Thanks to Dmitri Gribenko for the suggestion. by Rafael Espindola · 12 years ago
  30. b9725cf Mark all subsequent decls used. by Rafael Espindola · 12 years ago
  31. 7cdc457 Use Decl::getAvailability() rather than checking for the "unavailable" by Douglas Gregor · 12 years ago
  32. d63b19e Clear the LV cache when merging the availability attribute. by Rafael Espindola · 12 years ago
  33. cbb99ef Don't warn about undefined varargs argument behavior in unreachable code. by Ted Kremenek · 12 years ago
  34. 774d8b4 PR14838: When a member reference is bound to a temporary, don't forget to by Richard Smith · 12 years ago
  35. 3c7236e Back out my no-op change from r171783. by Douglas Gregor · 12 years ago
  36. 57cbb14 Use the C++11 POD definition in C++11 mode to determine whether one by Douglas Gregor · 12 years ago
  37. 0b1de54 Use getter. Fixes the build from a bad merge. by Rafael Espindola · 12 years ago
  38. 8e721b7 Add support for attribute((mode(unwind_word))). by Rafael Espindola · 12 years ago
  39. 32b94be objective-C: when searching for declarations in protocol by Fariborz Jahanian · 12 years ago
  40. 7a83421 Scalar shifts in the OpenCL specification (as of v. 1.2) are defined to be by David Tweed · 12 years ago
  41. 9ef1518 Fixes a breakage in dejagnu++ test suite where it included by Fariborz Jahanian · 12 years ago
  42. f799213 Fix up various builtin declaration of objc_msgSend families by Fariborz Jahanian · 12 years ago
  43. 6769ccb Warn on unused auto variables. by Rafael Espindola · 12 years ago
  44. da844b3 Use early returns to reduce indentation. by Rafael Espindola · 12 years ago
  45. 1b46ead Remove the anonymous namespace from lib/Sema/TreeTransform.h by Argyrios Kyrtzidis · 12 years ago
  46. 4e24f0f s/CXX0X/CXX11/g, except for __GNU_EXPERIMENTAL_CXX0X__, and update a few nearby 'C++0x' comments. by Richard Smith · 12 years ago
  47. 80ad52f s/CPlusPlus0x/CPlusPlus11/g by Richard Smith · 12 years ago
  48. 87b8127 Don't warn on unused member functions that are extern because of a typedef. by Rafael Espindola · 12 years ago
  49. de210a5 Use hasCLanguageLinkage when warning about non C return types. by Rafael Espindola · 12 years ago
  50. 9f40954 Don't warn for undefined but used decls that are external because of a typedef. by Rafael Espindola · 12 years ago
  51. 07cf58c ArrayRefize CXXTryStmt. by Nico Weber · 12 years ago
  52. d36aa35 ArrayRefize a CompoundStmt constructor. by Nico Weber · 12 years ago
  53. 78eeba8 Reject overloading of two static extern C functions. by Rafael Espindola · 12 years ago
  54. 0f46e64 Improve diagnostic wording for when an implicitly-deleted special member by Richard Smith · 12 years ago
  55. e57e3d3 Implement dcl.link paragraph 5. by Rafael Espindola · 12 years ago
  56. 137d662 Fix a regression from the previous commit. by Rafael Espindola · 12 years ago
  57. 485458a Use the most recent redecl to decide if it is needed. by Rafael Espindola · 12 years ago
  58. 65d7831 Fix for PR12222. by Erik Verbruggen · 12 years ago
  59. 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
  60. 140aadf Add 171048 back but invalidate the cache of all redeclarations when setting by Rafael Espindola · 12 years ago
  61. eaf5ec4 Revert r171048, "Cache visibility of decls." by NAKAMURA Takumi · 12 years ago
  62. dfb3166 Cache visibility of decls. by Rafael Espindola · 12 years ago
  63. e6bb76c Move a declaration closer to its use. No functionality change. by Nico Weber · 12 years ago
  64. 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
  65. a734a0e Add back -Wduplicate-enum which I mistakenly removed. by Ted Kremenek · 12 years ago
  66. d3292c8 Tweak Sema::CheckLiteralKind() to also include block literals by Ted Kremenek · 12 years ago
  67. 67a0f6e Add comments back that were accidentally removed in r170933. by Chad Rosier · 12 years ago
  68. 22aa690 Remove unused arguments and rename to conform to coding standards. by Chad Rosier · 12 years ago
  69. f530ff7 Change checkUnsafeAssignLiteral() to use the new Sema::CheckLiteralKind(). by Ted Kremenek · 12 years ago
  70. 3ee069b Hoist logic for classifying Objective-C literals into Sema (proper) for use with other diagnostics. by Ted Kremenek · 12 years ago
  71. e63a603 Use descriptive enum instead of raw integers for checkUnsafeAssignLiteral(). by Ted Kremenek · 12 years ago
  72. b29b30f Sink call to checkUnsafeAssignLiteral() into checkUnsafeAssignObject(). by Ted Kremenek · 12 years ago
  73. 87aa2fb Remove duplicate includes. by Roman Divacky · 12 years ago
  74. 5cf1589 Fix regression in r170489: when instantiating a direct initializer which is a by Richard Smith · 12 years ago
  75. 9d08401 Extend checkUnsafeAssigns() to also handle assigning an object literal to a weak reference. by Ted Kremenek · 12 years ago
  76. b1ea510 Refactor checkUnsafeAssigns() to avoid code duplication with while loop. by Ted Kremenek · 12 years ago
  77. 0db661e Don't eagerly emit a global static merged with a local extern. by Rafael Espindola · 12 years ago
  78. 904a326 Revert "Warn if a __weak variable is initialized with an Objective-C object literal." by Ted Kremenek · 12 years ago
  79. 7c44106 Warn if a __weak variable is initialized with an Objective-C object literal. by Ted Kremenek · 12 years ago
  80. ad017fa Revert r170500. It over-zealously converted *ALL* things named Attributes, which is wrong here. by Bill Wendling · 12 years ago
  81. 277076a objective-C: Don't warn of unimplemented property of protocols in by Fariborz Jahanian · 12 years ago
  82. 094dbf9 Rename the 'Attributes' class to 'Attribute'. It's going to represent a single attribute in the future. by Bill Wendling · 12 years ago
  83. cd6d5f4 Fix assertion failure in self-host (and probably bogus template instantiation by Richard Smith · 12 years ago
  84. c83c230 PR13470: Ensure that copy-list-initialization isntantiates as by Richard Smith · 12 years ago
  85. 3bc93e3 Change DeclContextLookup(Const)Result to (Mutable)ArrayRef<NamedDecl*>, as per review discussion in r170365 by David Blaikie · 12 years ago
  86. b13621d Re-commit r170428 changes with Linux style file endings. by Guy Benyei · 12 years ago
  87. 7f92f2d Revert changes from r170428, as I accidentally changed the line endings of these files to Windows style. by Guy Benyei · 12 years ago
  88. 736104a Add OpenCL images as clang builtin types. by Guy Benyei · 12 years ago
  89. a7a2f2a Merge storage classes even when contexts don't match. by Rafael Espindola · 12 years ago
  90. 2fcff83 The underlying type for an enum should be an integer type, not another enum. by Eli Friedman · 12 years ago
  91. 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
  92. 355a166 IdentifierResolver: Remove an unnecessary include and an unused parameter. by Nico Weber · 12 years ago
  93. a9990e8 Have Sema::ActOnStartOfFunctionDef return the declaration that was passed it. by Argyrios Kyrtzidis · 12 years ago
  94. 3abc768 Remove code from Sema::ActOnStartOfFunctionTemplateDef that duplicates what by Argyrios Kyrtzidis · 12 years ago
  95. 6febf12 Using CanQualType::getAs<ArrayType> is unsafe; fix the code currently using it, by Eli Friedman · 12 years ago
  96. 0c252fa objc: DOn't complain if a (SEL) expression is typecast by Fariborz Jahanian · 12 years ago
  97. 206491d Add missing check for error return from DefaultLvalueConversion. Fixes <rdar://problem/12857416>. by Eli Friedman · 12 years ago
  98. 135aa60 [objc] For the ARC error that is emitted when a synthesized property implementation by Argyrios Kyrtzidis · 12 years ago
  99. acaf110 Speeds up parsing of global declarations in cases where the warning by Manuel Klimek · 12 years ago
  100. 86f6cf6 Don't complain about incomplete implementations for methods that are by Douglas Gregor · 12 years ago