- 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
- 0bc5c66 objc_msgSend is not a builtin type in non-objc mode. Fixes //rdar://8686888 by Fariborz Jahanian · 14 years ago
- aa4fe05 comparison of AltiVec vectors now gives bool result (fix for 7533) by Anton Yartsev · 14 years ago
- 1380a14 -Rename -Wargument-larger-than -> -Wlarge-by-value-copy by Argyrios Kyrtzidis · 14 years ago
- 3532fdd Introduce option -Wargument-larger-than[=N] which warns about function definitions if they take by-value by Argyrios Kyrtzidis · 14 years ago
- 9263a30 Fix PR8625 and correctly interpret member-calls to static members when by Chandler Carruth · 14 years ago
- 07d7e7a Re-work the handling of implicit 'this' arguments and silly GCC-style attribute by Chandler Carruth · 14 years ago
- 64ccf24 Improve diagnostic for calling non-const method on const object. Fixes rdar://7743000 by Argyrios Kyrtzidis · 14 years ago
- 5082d34 Add another case to the whitelist of cast kinds that can convert to bool. by John McCall · 14 years ago
- ae2cf76 When complaining about ambiguous overload resolution for a unary or by Douglas Gregor · 14 years ago
- 8ff338b When performing initialization of a copy of a temporary object, use by Douglas Gregor · 14 years ago
- 15d7d12 Extend the bitfield-truncation warning to initializations. by John McCall · 14 years ago
- d7945c6 Friend function declarations can overload with tag declarations. Fixes PR7915. by John McCall · 14 years ago
- 78b8105 Diagnose attempst to template using declarations and using directives. by John McCall · 14 years ago
- 7ad5d42 Attempt to resolve overloaded functions in comma expressions and by Douglas Gregor · 14 years ago
- ef9b149 Revert the fix for PR8013. by Douglas Gregor · 14 years ago
- 9a0f2b6 Handle overload resolution when calling an overloaded function set by Douglas Gregor · 14 years ago
- 268f89e Make #pragma unused work for static local variables. by Douglas Gregor · 14 years ago
- b2d57ae Add __nullptr as a C++0x nullptr literal, available in C++98 by Douglas Gregor · 14 years ago
- e6fe9a2 When building a compound literal, check that the base element of the array is complete. by Argyrios Kyrtzidis · 14 years ago
- 3afb977 When attempting reference binding to an overloaded function, also by Douglas Gregor · 14 years ago
- 717a2bf Add missing test case for PR8230 by Douglas Gregor · 14 years ago
- 8e96043 Properly diagnose invalid casts to function references. Patch by by Douglas Gregor · 14 years ago
- dfdfc58 A union cannot contain static data members or data members of reference type. by Anders Carlsson · 14 years ago
- 6242599 Don't warn when matching %p to nullptr. by Anders Carlsson · 14 years ago
- 2c4792c When determining which template partial specialization is more specialized, by Argyrios Kyrtzidis · 14 years ago
- 343e6ff Expressions of type std::nullptr_t can be used as sentinels. by Anders Carlsson · 14 years ago
- c8df0b6 Implement [over.ics.rank]p4: A conversion that does not convert an std::nullptr_t to bool is better than one than does. by Anders Carlsson · 14 years ago
- c80117e Don't be so eager to replace UsingDecls in a DeclContext's lookup table; by Argyrios Kyrtzidis · 14 years ago
- 0c8209e It's OK to use nullptr in relational operators if the other side is a null pointer constant. by Anders Carlsson · 14 years ago
- 9fa8e56 Make this error less specific but also less likely to cause confusion. Fixes by Nick Lewycky · 14 years ago
- fec56e7 When producing overload candidates for binary built-in operators, keep by Douglas Gregor · 14 years ago
- 7533a5b Provide an error when a non-identifier name (such as an operator) is used as a by Sean Hunt · 14 years ago
- bf8cafa Properly handle temporaries that are created in a AsmStmt. by Argyrios Kyrtzidis · 14 years ago
- 65e7a6b Clean up temporaries created by an asm statement. Fixes rdar://8540491 by Argyrios Kyrtzidis · 14 years ago
- 11ab790 Emit error when using a bound member function for something other than calling it. by Argyrios Kyrtzidis · 14 years ago
- 0f279e7 Emit an error when trying to form a pointer-to-member to a bitfield. by Argyrios Kyrtzidis · 14 years ago
- c92bbb4 renamed: test/SemaCXX/ptrtomember-badcall.cpp -> test/SemaCXX/ptrtomember.cpp by Argyrios Kyrtzidis · 14 years ago
- d86132d Don't remove the init expression from the initializer list if it had a semantic error. by Argyrios Kyrtzidis · 14 years ago
- 6a622df Add test/SemaCXX/crash-PR7625.cpp into test/SemaCXX/crashes.cpp by Argyrios Kyrtzidis · 14 years ago