1. cd0655b Add a new -Wundefined-inline warning for inline functions which are used but not by Nick Lewycky · 12 years ago
  2. be507b6 Implement [dcl.align]p5 and C11 6.7.5/4: alignas cannot underalign. by Richard Smith · 12 years ago
  3. a31f65b [Sema][Attr]Fix alignment attribute printing. by Michael Han · 12 years ago
  4. 29805ca Improve 'failed template argument deduction' diagnostic for the case where we by Richard Smith · 12 years ago
  5. d1f09b4 Allow the computation of the base priority for a declaration code completion result to consider the completion context by Douglas Gregor · 12 years ago
  6. 0efa62f Replace "failed template argument deduction" diagnostic with something useful by Richard Smith · 12 years ago
  7. 995e26b Remove elements from Sema.UndefinedInternals as functions are defined. Also by Nick Lewycky · 12 years ago
  8. e28f6ab Unresolved lookups can have using declarations that refer to by Douglas Gregor · 12 years ago
  9. d03de6a Downgrade 'attribute ignored when parsing type' from error to warning, to match by Richard Smith · 12 years ago
  10. 8f3aacc Propagate the spelling list index for an attribute across template instantiation. by Richard Smith · 12 years ago
  11. 5cd532c Replace AS_MSTypespec with AS_Keyword, for representing any attribute spelled by Richard Smith · 12 years ago
  12. 3a2b7a1 Finish semantic analysis for [[carries_dependency]] attribute. by Richard Smith · 12 years ago
  13. 01a4114 Preserve Sema::UndefinedInternals across PCH boundaries. Fixes by Nick Lewycky · 12 years ago
  14. ad48a50 Patch to check for integer overflow. It has been by Fariborz Jahanian · 12 years ago
  15. 51d8c52 PR14922: when printing an attribute, use the real syntax of the attribute (GNU, C++11, MS Declspec) instead of hardcoded GNU syntax. by Michael Han · 12 years ago
  16. 89cf425 Use 'const Decl *' throughout code completion in Sema by Dmitri Gribenko · 12 years ago
  17. 3548068 Small code change to improve performance by Fariborz Jahanian · 12 years ago
  18. 48f3cc2 objectiveC (take two): don't warn when in -Wselector mode and by Fariborz Jahanian · 12 years ago
  19. f11ccc1 objectiveC: don't warn when in -Wselector mode and by Fariborz Jahanian · 12 years ago
  20. b892d70 Eliminate Sema::CompareProperties(), which was walking over a pile of by Douglas Gregor · 12 years ago
  21. aabd094 Eliminate the oddly-named Sema::ComparePropertiesInBaseAndSuper, which by Douglas Gregor · 12 years ago
  22. e6b9d80 Implement OpenCL event_t as Clang builtin type, including event_t related OpenCL restrictions (OpenCL 1.2 spec 6.9) by Guy Benyei · 12 years ago
  23. 22eaced Once we've collected the template arguments for a by Douglas Gregor · 12 years ago
  24. de03c15 Parsing support for C11's _Noreturn keyword. No semantics yet. by Richard Smith · 12 years ago
  25. b8b5cbc [ms-inline asm] Extend the Sema interface to get the size and length of a by Chad Rosier · 12 years ago
  26. 93c8617 ArrayRef-ize some ctor initializer related APIs by David Blaikie · 12 years ago
  27. cd8ab51 Implement C++11 semantics for [[noreturn]] attribute. This required splitting by Richard Smith · 12 years ago
  28. 6c3af3d Add -Wunsequenced (with compatibility alias -Wsequence-point) to warn on by Richard Smith · 12 years ago
  29. f4d918f When checking availability attributes for consistency between an by Douglas Gregor · 12 years ago
  30. 4195637 Refactor to call ActOnFinishFullExpr on every full expression. Teach by Richard Smith · 12 years ago
  31. b395847 Constify argument of Preprocessor::getMacroInfoHistory and propagate to by Dmitri Gribenko · 12 years ago
  32. 1c030e9 ArrayRef'ize Sema APIs related to format string checking by Dmitri Gribenko · 12 years ago
  33. cfa88f8 Remove useless 'llvm::' qualifier from names like StringRef and others that are by Dmitri Gribenko · 12 years ago
  34. 9946fc7 Add missing includes and forward declarations so that headers don't depend on by Dmitri Gribenko · 12 years ago
  35. ca2ab45 Provide Decl::getOwningModule(), which determines the (sub)module in by Douglas Gregor · 12 years ago
  36. 06d8c60 Constify parameter of clang::getCursorKindForDecl by Dmitri Gribenko · 12 years ago
  37. 5ea6ef4 Truth in advertising: LocallyScopedExternalDecls actually only contains by Richard Smith · 12 years ago
  38. 3973f28 [ms-inline asm] Extend the inline asm Sema lookup interface to determine if the by Chad Rosier · 12 years ago
  39. 51be6e3 Tighten types a bit. No functionality change. by Rafael Espindola · 12 years ago
  40. fc35cbc Tighten types a bit. No functionality change. by Rafael Espindola · 12 years ago
  41. c792d6d Unqualify the parameter type. This fixes a regression from 168895. by Rafael Espindola · 12 years ago
  42. 4e24f0f s/CXX0X/CXX11/g, except for __GNU_EXPERIMENTAL_CXX0X__, and update a few nearby 'C++0x' comments. by Richard Smith · 12 years ago
  43. 80ad52f s/CPlusPlus0x/CPlusPlus11/g by Richard Smith · 12 years ago
  44. 8c6fe14 Fix minor copy-pasto. No functionality change. by Nico Weber · 12 years ago
  45. d3292c8 Tweak Sema::CheckLiteralKind() to also include block literals by Ted Kremenek · 12 years ago
  46. a193e3b Fix a warning due to an extraneous comma. by Chad Rosier · 12 years ago
  47. 22aa690 Remove unused arguments and rename to conform to coding standards. by Chad Rosier · 12 years ago
  48. 3ee069b Hoist logic for classifying Objective-C literals into Sema (proper) for use with other diagnostics. by Ted Kremenek · 12 years ago
  49. ad017fa Revert r170500. It over-zealously converted *ALL* things named Attributes, which is wrong here. by Bill Wendling · 12 years ago
  50. 094dbf9 Rename the 'Attributes' class to 'Attribute'. It's going to represent a single attribute in the future. by Bill Wendling · 12 years ago
  51. c83c230 PR13470: Ensure that copy-list-initialization isntantiates as by Richard Smith · 12 years ago
  52. b13621d Re-commit r170428 changes with Linux style file endings. by Guy Benyei · 12 years ago
  53. 7f92f2d Revert changes from r170428, as I accidentally changed the line endings of these files to Windows style. by Guy Benyei · 12 years ago
  54. 736104a Add OpenCL images as clang builtin types. by Guy Benyei · 12 years ago
  55. 355a166 IdentifierResolver: Remove an unnecessary include and an unused parameter. by Nico Weber · 12 years ago
  56. 1d28caf PR14558: Compute triviality of special members (etc) at the end of the class by Richard Smith · 12 years ago
  57. fff3248 Virtual method overrides can no longer have mismatched calling conventions. This fixes PR14339. by Aaron Ballman · 12 years ago
  58. ac71351 Properly compute triviality for explicitly-defaulted or deleted special members. by Richard Smith · 12 years ago
  59. 35f3f36 Add a bit on FunctionDecl/ObjCMethodDecl to indicate if there was a body by Argyrios Kyrtzidis · 12 years ago
  60. 30a2e16 Sort #include lines for all files under include/... by Chandler Carruth · 12 years ago
  61. 55fc873 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 12 years ago
  62. a93d0f2 Include pruning and general cleanup. by Benjamin Kramer · 12 years ago
  63. 2fa67ef Pull the Attr iteration parts out of Attr.h, so including DeclBase.h doesn't pull in all the generated Attr code. by Benjamin Kramer · 12 years ago
  64. 8b8a09e Merge function types in C. by Rafael Espindola · 12 years ago
  65. afb4918 The declaration of a special member can require overload resolution to be by Richard Smith · 12 years ago
  66. 52b501c Implement C++11 [dcl.attr.grammar] p4: If an attribute-specifier-seq appertains to a friend declaration, that declaration shall be a definition. by Michael Han · 12 years ago
  67. 21173b1 PR14388: An array or function type in an exception specification should be by Richard Smith · 12 years ago
  68. 1a5bd5d PR14381: Never skip constexpr function bodies when code-completing. We may need by Richard Smith · 12 years ago
  69. 4a9e60f Store this Decl* as a Decl* instead of a uintptr_t. No functionality change. by Nick Lewycky · 12 years ago
  70. b6ad9b1 In ExpressionEvaluationContextRecord manage LambdaMangle with a shared by Argyrios Kyrtzidis · 12 years ago
  71. accaf19 s/tranform/transform/ by Benjamin Kramer · 12 years ago
  72. 66cff72 Provide the correct mangling and linkage for certain unnamed nested classes. by David Blaikie · 12 years ago
  73. b8a8de3 Accept and pass arguments to __unknown_anytype in argument by John McCall · 12 years ago
  74. e5afdcf Simplify function try/catch scope handling. by David Blaikie · 12 years ago
  75. 3a9fefe Fix more try scoping bugs introduced by r167650. by David Blaikie · 12 years ago
  76. c4027c8 PR14296: function parameter name collisions in function try/catch by David Blaikie · 12 years ago
  77. 5305641 PR13552: Fix the end location of a CXXNewExpr. by David Blaikie · 12 years ago
  78. c0e4445 -Warc-repeated-use-of-weak: allow single reads in loops from local variables. by Jordan Rose · 12 years ago
  79. 802f937 [ms-inline asm] Add support for field lookup in the SemaCallback. Patch by Eli. by Chad Rosier · 12 years ago
  80. c3f1742 When capturing 'this' in a lambda, make sure to update the set of by Douglas Gregor · 12 years ago
  81. 03e6fda PR14141 (part of DR1351): An implicitly-deduced "any" exception specification by Richard Smith · 12 years ago
  82. efeeccf Unrevert r166268, reverted in r166272, with a fix for the issue which Nick by Richard Smith · 12 years ago
  83. 535a5d0 Allow objc_requires_super to be used to check class methods as well. by Jordan Rose · 12 years ago
  84. 79cf161 Revert r166268, this fix for a crash-on-invalid introduced a rejects-valid. by Nick Lewycky · 12 years ago
  85. 80ddc31 PR14124: When performing template instantiation of a qualified-id outside of a by Richard Smith · 12 years ago
  86. c337d14 [ms-inline asm] Add a size argument to the LookupInlineAsmIdentifier() callback, by Chad Rosier · 12 years ago
  87. 9a14db3 Fix Objective-C implicit property synthesis for C++ classes so we use valid by Eli Friedman · 12 years ago
  88. 0ec56b7 From Vassil Vassilev: enable Sema to deal with multiple ExternalSemaSources. by Axel Naumann · 12 years ago
  89. b1502bc DR1442: In a range-based for statement, namespace 'std' is not an associated by Richard Smith · 12 years ago
  90. 7fd00b1 [ms-inline asm] Move most of the AsmParsing logic in clang back into the MC by Chad Rosier · 12 years ago
  91. d654f2d DR1528: C++11 doesn't allow repeated cv-qualifiers in declarators after all. by Richard Smith · 12 years ago
  92. 6952c01 Fix typo correction of one qualified name to another. by David Blaikie · 12 years ago
  93. b43d87b Remove pointless classof()'s. by Sean Silva · 12 years ago
  94. 7fffce7 -Warc-repeated-use-of-weak: Check messages to property accessors as well. by Jordan Rose · 12 years ago
  95. 04bec39 Move Sema::PropertyIfSetterOrGetter to ObjCMethodDecl::findPropertyDecl. by Jordan Rose · 12 years ago
  96. 9a1f7d8 Change Sema::PropertyIfSetterOrGetter to make use of isPropertyAccessor. by Jordan Rose · 12 years ago
  97. f5b132f Clearing a SmallPtrSet is still expensive, split it out from OverloadCandidateSet::clear and don't do it on destruction. by Benjamin Kramer · 12 years ago
  98. 0bea863 StringRef-ify Binary/UnaryOperator::getOpcodeStr by David Blaikie · 12 years ago
  99. 59c0a81 Fixed FunctionTypeLoc source range. by Abramo Bagnara · 12 years ago
  100. 9595c7e Permanently end the whole "pragma got handled by the parser too early" by Eli Friedman · 12 years ago