1. ad48a50 Patch to check for integer overflow. It has been by Fariborz Jahanian · 12 years ago
  2. 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
  3. 19dbb20 Add a new LangOpt NativeHalfType. This option allows for native half/fp16 by Joey Gouly · 12 years ago
  4. 445743d Add a fixit for _Noreturn main, by Dmitri Gribenko · 12 years ago
  5. 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
  6. 39371b8 Reapply r172878 with test case. by Ted Kremenek · 12 years ago
  7. f305279 Whitespace. by NAKAMURA Takumi · 12 years ago
  8. 6adfff1 Revert r172878, "Reword warning about using a *static* variable within its own initialization." by NAKAMURA Takumi · 12 years ago
  9. 1bdac1d Reword warning about using a *static* variable within its own initialization. by Ted Kremenek · 12 years ago
  10. de03c15 Parsing support for C11's _Noreturn keyword. No semantics yet. by Richard Smith · 12 years ago
  11. 617bb31 Add some semantic checks for OpenCL. Variadic macros, VLAs and bitfields are not supported. by Joey Gouly · 12 years ago
  12. cd8ab51 Implement C++11 semantics for [[noreturn]] attribute. This required splitting by Richard Smith · 12 years ago
  13. a6f9707 Implement a fixit for -Wmain-return-type by Dmitri Gribenko · 12 years ago
  14. 4d8a33b Delay linkage checks when validating the weakref attribute. by Rafael Espindola · 12 years ago
  15. 2a5bb50 Check for internal weak decls after merging. by Rafael Espindola · 12 years ago
  16. d329724 Rework the traversal of Objective-C categories and extensions to by Douglas Gregor · 12 years ago
  17. f4d918f When checking availability attributes for consistency between an by Douglas Gregor · 12 years ago
  18. 4195637 Refactor to call ActOnFinishFullExpr on every full expression. Teach by Richard Smith · 12 years ago
  19. 21c8fa8 PR12008: defer adding the implicit 'const' to a constexpr member function until by Richard Smith · 12 years ago
  20. cfa88f8 Remove useless 'llvm::' qualifier from names like StringRef and others that are by Dmitri Gribenko · 12 years ago
  21. 838dc59 Disable caching of visibility. by Rafael Espindola · 12 years ago
  22. ca2ab45 Provide Decl::getOwningModule(), which determines the (sub)module in by Douglas Gregor · 12 years ago
  23. 294ddc6 Reject incompatible redeclarations of extern C symbols. by Rafael Espindola · 12 years ago
  24. 5ea6ef4 Truth in advertising: LocallyScopedExternalDecls actually only contains by Richard Smith · 12 years ago
  25. 7dc80e1 When name lookup for a redeclaration finds declarations that are known by Douglas Gregor · 12 years ago
  26. 51be6e3 Tighten types a bit. No functionality change. by Rafael Espindola · 12 years ago
  27. fc35cbc Tighten types a bit. No functionality change. by Rafael Espindola · 12 years ago
  28. d63b19e Clear the LV cache when merging the availability attribute. by Rafael Espindola · 12 years ago
  29. 9ef1518 Fixes a breakage in dejagnu++ test suite where it included by Fariborz Jahanian · 12 years ago
  30. f799213 Fix up various builtin declaration of objc_msgSend families by Fariborz Jahanian · 12 years ago
  31. 6769ccb Warn on unused auto variables. by Rafael Espindola · 12 years ago
  32. da844b3 Use early returns to reduce indentation. by Rafael Espindola · 12 years ago
  33. 80ad52f s/CPlusPlus0x/CPlusPlus11/g by Richard Smith · 12 years ago
  34. de210a5 Use hasCLanguageLinkage when warning about non C return types. by Rafael Espindola · 12 years ago
  35. 78eeba8 Reject overloading of two static extern C functions. by Rafael Espindola · 12 years ago
  36. e57e3d3 Implement dcl.link paragraph 5. by Rafael Espindola · 12 years ago
  37. 140aadf Add 171048 back but invalidate the cache of all redeclarations when setting by Rafael Espindola · 12 years ago
  38. eaf5ec4 Revert r171048, "Cache visibility of decls." by NAKAMURA Takumi · 12 years ago
  39. dfb3166 Cache visibility of decls. by Rafael Espindola · 12 years ago
  40. e6bb76c Move a declaration closer to its use. No functionality change. by Nico Weber · 12 years ago
  41. a734a0e Add back -Wduplicate-enum which I mistakenly removed. by Ted Kremenek · 12 years ago
  42. 0db661e Don't eagerly emit a global static merged with a local extern. by Rafael Espindola · 12 years ago
  43. 904a326 Revert "Warn if a __weak variable is initialized with an Objective-C object literal." by Ted Kremenek · 12 years ago
  44. 7c44106 Warn if a __weak variable is initialized with an Objective-C object literal. by Ted Kremenek · 12 years ago
  45. ad017fa Revert r170500. It over-zealously converted *ALL* things named Attributes, which is wrong here. by Bill Wendling · 12 years ago
  46. 094dbf9 Rename the 'Attributes' class to 'Attribute'. It's going to represent a single attribute in the future. by Bill Wendling · 12 years ago
  47. 3bc93e3 Change DeclContextLookup(Const)Result to (Mutable)ArrayRef<NamedDecl*>, as per review discussion in r170365 by David Blaikie · 12 years ago
  48. a7a2f2a Merge storage classes even when contexts don't match. by Rafael Espindola · 12 years ago
  49. 2fcff83 The underlying type for an enum should be an integer type, not another enum. by Eli Friedman · 12 years ago
  50. 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
  51. 355a166 IdentifierResolver: Remove an unnecessary include and an unused parameter. by Nico Weber · 12 years ago
  52. a9990e8 Have Sema::ActOnStartOfFunctionDef return the declaration that was passed it. by Argyrios Kyrtzidis · 12 years ago
  53. 6febf12 Using CanQualType::getAs<ArrayType> is unsafe; fix the code currently using it, by Eli Friedman · 12 years ago
  54. acaf110 Speeds up parsing of global declarations in cases where the warning by Manuel Klimek · 12 years ago
  55. fff3248 Virtual method overrides can no longer have mismatched calling conventions. This fixes PR14339. by Aaron Ballman · 12 years ago
  56. ac71351 Properly compute triviality for explicitly-defaulted or deleted special members. by Richard Smith · 12 years ago
  57. 12f37e4 Fix analysis based warnings so that all warnings are emitted when compiling by DeLesley Hutchins · 12 years ago
  58. 35f3f36 Add a bit on FunctionDecl/ObjCMethodDecl to indicate if there was a body by Argyrios Kyrtzidis · 12 years ago
  59. 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
  60. 55fc873 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 12 years ago
  61. 8b8a09e Merge function types in C. by Rafael Espindola · 12 years ago
  62. 9d29543 Don't return a pointer to an UnresolvedSetImpl in the CXXRecordDecl interface, by Argyrios Kyrtzidis · 12 years ago
  63. d1bac8d Allow an ASTConsumer to selectively skip function bodies while parsing. Patch by Richard Smith · 12 years ago
  64. 8dbf697 Add r168519 back, but with a fix to also merge the used flag in variables. by Rafael Espindola · 12 years ago
  65. 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
  66. 919b7e6 Merge used flags so that we don't have to iterate on isUsed. With this change by Rafael Espindola · 12 years ago
  67. 1a5bd5d PR14381: Never skip constexpr function bodies when code-completing. We may need by Richard Smith · 12 years ago
  68. 426391c A step towards sorting out handling of triviality of special members in C++11. by Richard Smith · 12 years ago
  69. 66cff72 Provide the correct mangling and linkage for certain unnamed nested classes. by David Blaikie · 12 years ago
  70. 97c81bf For classes that have the warn_unused_result attribute, don't apply the by Kaelyn Uhrain · 12 years ago
  71. 51ceb7b Enable C++11 attribute syntax for warn_unused_result and allow it to be by Kaelyn Uhrain · 12 years ago
  72. a67d503 PR13788: Don't perform checks on the initializer of a dependently-typed by Richard Smith · 12 years ago
  73. 88adb98 Avoid to write function name in comment. Thanks to Dmitri Gribenko. by Abramo Bagnara · 12 years ago
  74. eae859a Readded line removed by mistake. by Abramo Bagnara · 12 years ago
  75. 4c5750e Fixed converted ConstantArrayTypeLoc range. Added a missing testcase for ConstructorDecl source range. by Abramo Bagnara · 12 years ago
  76. 9568f0c Partially roll back r166898; it exposed a bug in the standard. by Richard Smith · 12 years ago
  77. c36e359 Revert functional part of r166896 and just suppress -Wunneeded-internal-declaration for reference types for now. This needs more work; the cases we currently miss are a bit random. by Richard Smith · 12 years ago
  78. 1432a43 When determining whether to try evaluating the initializer of a variable, check by Richard Smith · 12 years ago
  79. 623ef4b In -Wunneeded-internal-declaration, suppress the warning for variables which by Richard Smith · 12 years ago
  80. 39e1776 Fix false positive in -Wunused-variable when a ctor call make involve cleanups. by David Blaikie · 12 years ago
  81. e4851f2 Add a new warning -Wmissing-variable-declarations, to warn about variables by Eli Friedman · 12 years ago
  82. 444d384 Rework implementation of DR1492: Apply the resolution to operator delete too, 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. 5708c18 Implement C++ 10.3p16 - overrides involving deleted functions must match. by David Blaikie · 12 years ago
  85. 6c500b1 Fix warnings introduced by r165826. by DeLesley Hutchins · 12 years ago
  86. 3ce9fae Thread-safety analysis: support multiple thread-safety attributes on by DeLesley Hutchins · 12 years ago
  87. 6952c01 Fix typo correction of one qualified name to another. by David Blaikie · 12 years ago
  88. 38eb1e1 When storing the C++ overridden methods, store them once for the by Argyrios Kyrtzidis · 12 years ago
  89. 59c0a81 Fixed FunctionTypeLoc source range. by Abramo Bagnara · 12 years ago
  90. 16467f2 Fixed ParamDecl source range for implicit typed k&r parameters. by Abramo Bagnara · 12 years ago
  91. 45bed13 Fix scope location when parsing GNU attributes. by Michael Han · 12 years ago
  92. 6b2cc42 Change how the SelfReferenceChecker handles MemberExpr. Instead of treating by Richard Trieu · 12 years ago
  93. 3ba17ee Tweak diagnostic text to indicate that __weak on a local variable is only allowed by Ted Kremenek · 12 years ago
  94. c4a8391 PR13978: A 'decltype' DeclSpec has an expression representation, not a type by Richard Smith · 12 years ago
  95. 568f785 Cleaning up the self initialization checker. by Richard Trieu · 12 years ago
  96. 1952354 Move the 'find macro by spelling' infrastructure to the Preprocessor class and by Dmitri Gribenko · 12 years ago
  97. 58b6bdc Add a warning (off by default) for repeated use of the same weak property. by Jordan Rose · 12 years ago
  98. f3477c1 Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. See: http://en.wikipedia.org/wiki/If_and_only_if Commit 164766 by Sylvestre Ledru · 12 years ago
  99. 94ff8e1 Fix a typo 'iff' => 'if' by Sylvestre Ledru · 12 years ago
  100. e402e72 Fix for r163013 regression and further __interface enhancement. by John McCall · 12 years ago