1. 39371b8 Reapply r172878 with test case. by Ted Kremenek · 12 years ago
  2. f305279 Whitespace. by NAKAMURA Takumi · 12 years ago
  3. 6adfff1 Revert r172878, "Reword warning about using a *static* variable within its own initialization." by NAKAMURA Takumi · 12 years ago
  4. 1bdac1d Reword warning about using a *static* variable within its own initialization. by Ted Kremenek · 12 years ago
  5. 299adab Remove windows line endings. by David Blaikie · 12 years ago
  6. 22eaced Once we've collected the template arguments for a by Douglas Gregor · 12 years ago
  7. f373c5d When checking the parameter types of an Objective-C method, don't by Douglas Gregor · 12 years ago
  8. 92d1387 One can override an Objective-C ARC ownership qualifier that came from by Douglas Gregor · 12 years ago
  9. 02dd798 In Objective-C ARC, completely ignore ownership qualifiers on the by Douglas Gregor · 12 years ago
  10. 1a2dcd5 Defer checking for unsequenced operations on the RHS of && and || in order to by Richard Smith · 12 years ago
  11. de03c15 Parsing support for C11's _Noreturn keyword. No semantics yet. by Richard Smith · 12 years ago
  12. 995e4a7 -Wunsequenced: if the LHS of an &&, || or ?: is not constant, check for by Richard Smith · 12 years ago
  13. b8b5cbc [ms-inline asm] Extend the Sema interface to get the size and length of a by Chad Rosier · 12 years ago
  14. 617bb31 Add some semantic checks for OpenCL. Variadic macros, VLAs and bitfields are not supported. by Joey Gouly · 12 years ago
  15. ee000bb Improve -Wreorder to handle cases of anonymous class member ordering by David Blaikie · 12 years ago
  16. 93c8617 ArrayRef-ize some ctor initializer related APIs by David Blaikie · 12 years ago
  17. 72190da Remove some unnecessary casts by David Blaikie · 12 years ago
  18. 87b73ba Suppress all -Wunused-value warnings from macro body expansions. by Matt Beaumont-Gay · 12 years ago
  19. e5096c8 Attempt to work around bug in older GCCs to fix buildbot. by Richard Smith · 12 years ago
  20. cd8ab51 Implement C++11 semantics for [[noreturn]] attribute. This required splitting by Richard Smith · 12 years ago
  21. 6c3af3d Add -Wunsequenced (with compatibility alias -Wsequence-point) to warn on by Richard Smith · 12 years ago
  22. 0f9b9f3 Treat hidden Objective-C protocol definitions as if they were by Douglas Gregor · 12 years ago
  23. a6f9707 Implement a fixit for -Wmain-return-type by Dmitri Gribenko · 12 years ago
  24. 4d8a33b Delay linkage checks when validating the weakref attribute. by Rafael Espindola · 12 years ago
  25. afb7ce3 Fixes crash when illegal function definitions are deleted or defaulted. Fixes PR14577. by Aaron Ballman · 12 years ago
  26. 2df0df8 Simplify code. No functionality change. by Rafael Espindola · 12 years ago
  27. 2a5bb50 Check for internal weak decls after merging. by Rafael Espindola · 12 years ago
  28. d329724 Rework the traversal of Objective-C categories and extensions to by Douglas Gregor · 12 years ago
  29. f0e0004 Teach global selector lookup to ignore hidden methods, which occur by Douglas Gregor · 12 years ago
  30. 7dfd182 First step in implementation of mips16 and nomips16 attributes. by Reed Kotler · 12 years ago
  31. 72daa3f One can have an unavailable method overridden by an available method, by Douglas Gregor · 12 years ago
  32. b9df75f Apply adjustment to function- and array-typed non-type template by Douglas Gregor · 12 years ago
  33. f4d918f When checking availability attributes for consistency between an by Douglas Gregor · 12 years ago
  34. c23e69d Fix Cast Code by David Greene · 12 years ago
  35. 02d65ee Don't crash when binding a reference to a temporary pointer created from by Richard Smith · 12 years ago
  36. a121eb3 PR14950: Fix out-of-bounds function parameter access in literal operator lookup. by Richard Smith · 12 years ago
  37. 5c52166 Fix behavior of [[gnu::]] function attributes. Per g++'s behavior, these by Richard Smith · 12 years ago
  38. 4195637 Refactor to call ActOnFinishFullExpr on every full expression. Teach by Richard Smith · 12 years ago
  39. 714fcc1 Fix regression in r172376. Don't try to detect missing 'constexpr' specifiers by Richard Smith · 12 years ago
  40. f7a0527 Accept [[gnu::*]] for all __attribute__((*))s which are: by Richard Smith · 12 years ago
  41. 21c8fa8 PR12008: defer adding the implicit 'const' to a constexpr member function until by Richard Smith · 12 years ago
  42. 1c030e9 ArrayRef'ize Sema APIs related to format string checking by Dmitri Gribenko · 12 years ago
  43. a4fa900 Remove some duplication in the handling of __attribute__((ext_vector_size(N))). by Richard Smith · 12 years ago
  44. cfa88f8 Remove useless 'llvm::' qualifier from names like StringRef and others that are by Dmitri Gribenko · 12 years ago
  45. 838dc59 Disable caching of visibility. by Rafael Espindola · 12 years ago
  46. 7a525ac Fix a regression from 171193: main cannot be overloaded. by Rafael Espindola · 12 years ago
  47. ca2ab45 Provide Decl::getOwningModule(), which determines the (sub)module in by Douglas Gregor · 12 years ago
  48. 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
  49. c3cd6f7 Fix -Wunused-comparison for comparisons in arguments to function-like macros. by Matt Beaumont-Gay · 12 years ago
  50. 06d8c60 Constify parameter of clang::getCursorKindForDecl by Dmitri Gribenko · 12 years ago
  51. 294ddc6 Reject incompatible redeclarations of extern C symbols. by Rafael Espindola · 12 years ago
  52. 601e6e8 Fixed an assertion failure triggered by invalid code. by Enea Zaffanella · 12 years ago
  53. 5ea6ef4 Truth in advertising: LocallyScopedExternalDecls actually only contains by Richard Smith · 12 years ago
  54. 3973f28 [ms-inline asm] Extend the inline asm Sema lookup interface to determine if the by Chad Rosier · 12 years ago
  55. f6e65cc Provide a better warning when case value overflows. // rdar://11577384 by Fariborz Jahanian · 12 years ago
  56. a18e70b Issue warning when case value is too large to fit by Fariborz Jahanian · 12 years ago
  57. 7dc80e1 When name lookup for a redeclaration finds declarations that are known by Douglas Gregor · 12 years ago
  58. e178e70 put back diagnostics when flexible members are captured in lambdas. by Fariborz Jahanian · 12 years ago
  59. b20eb10 Fix typo (again). by Fariborz Jahanian · 12 years ago
  60. 4b3040f Remove lambda from my last patch. by Fariborz Jahanian · 12 years ago
  61. 456cfc0 Fixes typo in comment. by Fariborz Jahanian · 12 years ago
  62. 9c0816f objectiveC blocks: It is impractical to capture by Fariborz Jahanian · 12 years ago
  63. d130fd2 Clear LV cache when dropping availability attributes. by Rafael Espindola · 12 years ago
  64. 51be6e3 Tighten types a bit. No functionality change. by Rafael Espindola · 12 years ago
  65. 8c4222a Don't crash when trying to apply the availability attribute to a block. by Rafael Espindola · 12 years ago
  66. fc35cbc Tighten types a bit. No functionality change. by Rafael Espindola · 12 years ago
  67. a6d2020 Move loop variable update. Thanks to Dmitri Gribenko for the suggestion. by Rafael Espindola · 12 years ago
  68. b9725cf Mark all subsequent decls used. by Rafael Espindola · 12 years ago
  69. 7cdc457 Use Decl::getAvailability() rather than checking for the "unavailable" by Douglas Gregor · 12 years ago
  70. d63b19e Clear the LV cache when merging the availability attribute. by Rafael Espindola · 12 years ago
  71. cbb99ef Don't warn about undefined varargs argument behavior in unreachable code. by Ted Kremenek · 12 years ago
  72. 774d8b4 PR14838: When a member reference is bound to a temporary, don't forget to by Richard Smith · 12 years ago
  73. 3c7236e Back out my no-op change from r171783. by Douglas Gregor · 12 years ago
  74. 57cbb14 Use the C++11 POD definition in C++11 mode to determine whether one by Douglas Gregor · 12 years ago
  75. 0b1de54 Use getter. Fixes the build from a bad merge. by Rafael Espindola · 12 years ago
  76. 8e721b7 Add support for attribute((mode(unwind_word))). by Rafael Espindola · 12 years ago
  77. 32b94be objective-C: when searching for declarations in protocol by Fariborz Jahanian · 12 years ago
  78. 7a83421 Scalar shifts in the OpenCL specification (as of v. 1.2) are defined to be by David Tweed · 12 years ago
  79. 9ef1518 Fixes a breakage in dejagnu++ test suite where it included by Fariborz Jahanian · 12 years ago
  80. f799213 Fix up various builtin declaration of objc_msgSend families by Fariborz Jahanian · 12 years ago
  81. 6769ccb Warn on unused auto variables. by Rafael Espindola · 12 years ago
  82. da844b3 Use early returns to reduce indentation. by Rafael Espindola · 12 years ago
  83. 1b46ead Remove the anonymous namespace from lib/Sema/TreeTransform.h by Argyrios Kyrtzidis · 12 years ago
  84. 4e24f0f s/CXX0X/CXX11/g, except for __GNU_EXPERIMENTAL_CXX0X__, and update a few nearby 'C++0x' comments. by Richard Smith · 12 years ago
  85. 80ad52f s/CPlusPlus0x/CPlusPlus11/g by Richard Smith · 12 years ago
  86. 87b8127 Don't warn on unused member functions that are extern because of a typedef. by Rafael Espindola · 12 years ago
  87. de210a5 Use hasCLanguageLinkage when warning about non C return types. by Rafael Espindola · 12 years ago
  88. 9f40954 Don't warn for undefined but used decls that are external because of a typedef. by Rafael Espindola · 12 years ago
  89. 07cf58c ArrayRefize CXXTryStmt. by Nico Weber · 12 years ago
  90. d36aa35 ArrayRefize a CompoundStmt constructor. by Nico Weber · 12 years ago
  91. 78eeba8 Reject overloading of two static extern C functions. by Rafael Espindola · 12 years ago
  92. 0f46e64 Improve diagnostic wording for when an implicitly-deleted special member by Richard Smith · 12 years ago
  93. e57e3d3 Implement dcl.link paragraph 5. by Rafael Espindola · 12 years ago
  94. 137d662 Fix a regression from the previous commit. by Rafael Espindola · 12 years ago
  95. 485458a Use the most recent redecl to decide if it is needed. by Rafael Espindola · 12 years ago
  96. 65d7831 Fix for PR12222. by Erik Verbruggen · 12 years ago
  97. 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
  98. 140aadf Add 171048 back but invalidate the cache of all redeclarations when setting by Rafael Espindola · 12 years ago
  99. eaf5ec4 Revert r171048, "Cache visibility of decls." by NAKAMURA Takumi · 12 years ago
  100. dfb3166 Cache visibility of decls. by Rafael Espindola · 12 years ago