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