1. 79ab2c8 Provide overload diagnostics when explicit casts involving class types fail. by John McCall · 14 years ago
  2. eee1d54 When parsing an out-of-line member function declaration, we must delay by John McCall · 14 years ago
  3. e3c8c64 Implement objective-c++'s block pointer type matching involving by Fariborz Jahanian · 14 years ago
  4. 74b47f9 For -Woverloaded-virtual take into account canonical methods. Fixes rdar://8979966 & http://llvm.org/PR9182. by Argyrios Kyrtzidis · 14 years ago
  5. af8ca37 Move the check that gives functions with unique-external types unique-external by John McCall · 14 years ago
  6. 332bb2a When checking the 'weak' and 'weakref' attributes, look for non-external by John McCall · 14 years ago
  7. f9536f4 Test case accidentally left out of my last commit. by John McCall · 14 years ago
  8. 651f86f In Sema::CheckShadow, get the DeclContext from the variable that we are checking by Argyrios Kyrtzidis · 14 years ago
  9. 1b52844 Move uninitialized variable checking back under -Wuninitialized-experimental. It is clear from user feedback that this warning is not quite ready. by Ted Kremenek · 14 years ago
  10. 683564a pre/post ++/-- for AltiVec vectors. (with builtins-ppc-altivec.c failure fixed) by Anton Yartsev · 14 years ago
  11. 1de34dd When the out-of-line definition differs from the declaration in the return type, by Argyrios Kyrtzidis · 14 years ago
  12. 09f57b9 Don't suggest -Wuninitialized fixits for uninitialized enum types. by Ted Kremenek · 14 years ago
  13. 799ef66 Implement -Woverloaded-virtual. by Argyrios Kyrtzidis · 14 years ago
  14. 609e317 Based on user feedback, swap -Wuninitialized diagnostics to have the warning refer to the bad use, and the note to the variable declaration. by Ted Kremenek · 14 years ago
  15. 8d2968c Turn test for // rdar://8945175 into a sema test. by Fariborz Jahanian · 14 years ago
  16. 668fdd8 Don't warn for -Wnon-virtual-dtor for dependent classes. by Argyrios Kyrtzidis · 14 years ago
  17. f7275cd Remove redundant check to not warn for warn_equality_with_extra_parens if we are in a macro. This is checked twice. by Ted Kremenek · 14 years ago
  18. 006ae38 Don't warn about extraneous '()' around a comparison if it occurs within a macro. by Ted Kremenek · 14 years ago
  19. cf1620a Don't warn for "if ((a == b))" if the parens came from a macro. Thanks to Fariborz for the hint! by Argyrios Kyrtzidis · 14 years ago
  20. 70f2330 For "if ((a == b))" only warn if 'a' is a modifiable l-value. Caught by John! by Argyrios Kyrtzidis · 14 years ago
  21. 0e2dc3a Warn for "if ((a == b))" where the equality expression is needlessly wrapped inside parentheses. by Argyrios Kyrtzidis · 14 years ago
  22. d880f52 Implement access checking for the "delete" operator. Fixes PR9050, by Douglas Gregor · 14 years ago
  23. 9641fc8 Only warn for -Wnon-virtual-dtor for public destructors. Thanks to Benjamin Kramer for the hint! by Argyrios Kyrtzidis · 14 years ago
  24. 683a81f Implement the suggested resolution to core issue 547, extended to also by Douglas Gregor · 14 years ago
  25. def4e2a Warn if the class has virtual methods but non-virtual destructor. Addresses rdar://8756445. by Argyrios Kyrtzidis · 14 years ago
  26. 36eb5e4 Don't warn that variables in C++ static member functions shadow fields. Fixes rdar://8900456. by Argyrios Kyrtzidis · 14 years ago
  27. 43f0a7c If there were errors, disable 'unused' warnings since they will mostly be noise. by Argyrios Kyrtzidis · 14 years ago
  28. 6ad5df1 Error for use of field from anonymous struct or union should say "invalid use of nonstatic data member" by Argyrios Kyrtzidis · 14 years ago
  29. d89d30f Fix some corner cases in the __is_base_of logic. by John McCall · 14 years ago
  30. b608b98 Give OpaqueValueExpr a source location, because its source location by Douglas Gregor · 14 years ago
  31. 1eee5dc Teach the evaluation of the __is_convertible_to trait to translate by Douglas Gregor · 14 years ago
  32. 9f36113 Implement the Microsoft __is_convertible_to type trait, modeling the by Douglas Gregor · 14 years ago
  33. b7ee2e5 Revert r124217 because it didn't catch the actual error case it was trying to by Jeffrey Yasskin · 14 years ago
  34. 5811f59 Teach -Wreturn-type that destructors can appear by Ted Kremenek · 14 years ago
  35. fd6b874 Merge -Wuninitialized-experimental into -Wuninitialized. by Ted Kremenek · 14 years ago
  36. df8dc5d Fix infinite loop during error diagnostics. Fixes rdar://8875304. by Argyrios Kyrtzidis · 14 years ago
  37. 8b3b3db Tweak return-noreturn.cpp test to have its original by Ted Kremenek · 14 years ago
  38. f39e6a3 Fix regression in -Wreturn-type caused by not by Ted Kremenek · 14 years ago
  39. c60e13a Add an attribute to forbid temporary instances of a type. This allows class by Jeffrey Yasskin · 14 years ago
  40. 5af1f06 Revert r124146 for now. It appears to be failing on a few platforms. by Eric Christopher · 14 years ago
  41. e07ae4e pre/post increase/decrease for AltiVec vectors by Anton Yartsev · 14 years ago
  42. 446e402 Enhance the diagnostic for referring to a typedef with an elaborated name to be by Nick Lewycky · 14 years ago
  43. 8dde14e Re-instate r123977/r123978, my updates of the reference-binding by Douglas Gregor · 14 years ago
  44. f502d93 Mark VTables and RTTI data linkonce_odr instead of weak_odr, with the exception of explicit template instantiations, which have to be weak_odr. by Anders Carlsson · 14 years ago
  45. 15e14a2 Get rid of [[hiding]], [[override]] and [[base_check]]. by Anders Carlsson · 14 years ago
  46. f89e042 Get rid of the [[final]] C++0x attribute. by Anders Carlsson · 14 years ago
  47. f3beabf Add test from PR9026. by Rafael Espindola · 14 years ago
  48. aa5952c revert r123977 and r123978 to fix PR9026. by Rafael Espindola · 14 years ago
  49. 5232011 Add a test for "perfect" forwarding by Douglas Gregor · 14 years ago
  50. dcfb360 Provide -Wuninitialized-experimental fixits by Ted Kremenek · 14 years ago
  51. 94b1b4d Enhance -Wuninitialized-experimental diagnostics by Ted Kremenek · 14 years ago
  52. cc15f01 Implement the preference for move-construction over copy-construction by Douglas Gregor · 14 years ago
  53. 71fdb35 Add unique_ptr example to test the use of rvalue references. I'll grow by Douglas Gregor · 14 years ago
  54. 68ed68b Update the reference-binding implementation used for overload by Douglas Gregor · 14 years ago
  55. fb5d7ef Improve the diagnostic that complains about binding an rvalue by Douglas Gregor · 14 years ago
  56. b2855ad More work to bring reference binding up to the latest C++0x by Douglas Gregor · 14 years ago
  57. 2d4bed1 Relax CFG assertions in UninitializedValuesV2 when by Ted Kremenek · 14 years ago
  58. ac6a858 Merge test. by Rafael Espindola · 14 years ago
  59. 15c6c0e Turns out that the previous commit also fixes this :-) by Rafael Espindola · 14 years ago
  60. 706df2f Fix PR8884 by skipping transparent contexts. The test is for LikageSpec. I by Rafael Espindola · 14 years ago
  61. f2ae526 Sema::BuildCXXMemberCallExpr() can fail due to access or ambiguities, by Douglas Gregor · 14 years ago
  62. 92c3a04 Warn about the use of unparenthesized |= in conditionals (which may be by Douglas Gregor · 14 years ago
  63. c21fed3 Teach UninitializedValuesV2 to implicitly reason about C++ by Ted Kremenek · 14 years ago
  64. 22c4120 Handle base and member destructors in CheckFallThrough. by Anders Carlsson · 14 years ago
  65. b918d0f Convert "#pragma unused(...)" into tokens for the parser. by Argyrios Kyrtzidis · 14 years ago
  66. 5be38be Remove a c++ file test I inadvertently added in Sema last week. by Francois Pichet · 14 years ago
  67. 0dc5f9a Fix a bug where the -Wmissing-noreturn would always treat constructors with base or member initializers as noreturn. by Anders Carlsson · 14 years ago
  68. 2d75bbd Emit an extension diagnostic for C99 designated initializers that appear in C++ code by Douglas Gregor · 14 years ago
  69. 57244f6 Set unnamed_addr in every type info. by Rafael Espindola · 14 years ago
  70. eeef924 Remove a kludge from analysis based warnings that used to detect by Chandler Carruth · 14 years ago
  71. ebfde17 Put warning about makeing a string writable into by Fariborz Jahanian · 14 years ago
  72. 914c9a6 Tweak the wording of this warning further based on a suggestion from Chris. by Chandler Carruth · 14 years ago
  73. 2fdc5e8 Many of the built-in operator candidates introduced into overload by Douglas Gregor · 14 years ago
  74. 9f7a6ee Implement -Wself-assign, which warns on code such as: by Chandler Carruth · 14 years ago
  75. b2b5cc0 Enhance the diagnostic for negative array sizes to include the by Chandler Carruth · 14 years ago
  76. ef9d09c Fix PR8841 by checking for both semantic and lecical dependent by Chandler Carruth · 14 years ago
  77. 6fb0729 When checking a using declaration, make sure that the context we're by Douglas Gregor · 14 years ago
  78. 7dd3c73 Tweak location of diagnostic for -Wunreachable-code by Ted Kremenek · 14 years ago
  79. de43632 __attribute__((nonnull)) can apply to reference-to-pointer by Douglas Gregor · 14 years ago
  80. 1192fff Remove a type that got reduced away from this test case but not actually deleted. by Chandler Carruth · 14 years ago
  81. e7f8504 Fix PR8774 by restricting when hasInit returns true. Previously, it by Chandler Carruth · 14 years ago
  82. 5a82119 Fix another unnecessary-struct-padding issue. by Argyrios Kyrtzidis · 14 years ago
  83. 43ddd9f Before determining the effect the alignment of base struct will have in the aligment of the sub-struct, by Argyrios Kyrtzidis · 14 years ago
  84. 346af03 Handle parameter attributes when tentative parsing for function/variable disambiguation. by Argyrios Kyrtzidis · 14 years ago
  85. f5fe292 Fix PR8720 by printing an error message with a substring that the gcc testsuite searches for. by Rafael Espindola · 14 years ago
  86. 6ad6f28 Type traits intrinsic implementation: __is_base_of(T, U) by Francois Pichet · 14 years ago
  87. abc56c7 When deciding whether to complain about the type of a boolean condition, use by John McCall · 14 years ago
  88. f6a1648 Although we currently have explicit lvalue-to-rvalue conversions, they're by John McCall · 14 years ago
  89. a61b3e7 After parsing a ':' in an enum-specifier within class context, by Douglas Gregor · 14 years ago
  90. 26e10be Follow through references to catch returned stack addresses, local blocks, label addresses or references to temporaries, e.g: by Argyrios Kyrtzidis · 14 years ago
  91. 15d5c83 Fix bug in r120299 spotted by dgregor. by Nico Weber · 14 years ago
  92. d976ca4 Revert r120331 since it causes spurious warnings and a possible assertion hit when self-host. by Argyrios Kyrtzidis · 14 years ago
  93. 8b2f01b Emit warnings if we are returning a reference to a local temporary. by Argyrios Kyrtzidis · 14 years ago
  94. 08e41a6 Always use a function's decl context when building default arguments. Fixes http://http://llvm.org/pr8479. by Nico Weber · 14 years ago
  95. 7ff776e Revert parts of r120266 that I did not mean to commit by Nico Weber · 14 years ago
  96. 6bb4dcb Minor whitespace and comment fixes. No functionality change. by Nico Weber · 14 years ago
  97. 2a5f99e Tie DefineVTablesUsed() in with recursive function instantiation so that we emit by Nick Lewycky · 14 years ago
  98. 76f11c9 Remove one I just added, add a more focused test for why the current code is correct. by Nico Weber · 14 years ago
  99. 253e80b Fix the source range of CXXNewExprs. Fixes http://llvm.org/pr8661. by Nico Weber · 14 years ago
  100. a25b6a4 Don't warn for empty 'if' body if there is a macro that expands to nothing, e.g: by Argyrios Kyrtzidis · 14 years ago