Age | Commit message (Expand) | Author |
2013-05-06 | Grab-bag of bit-field fixes: | John McCall |
2013-04-11 | Force a load when creating a reference to a temporary copied from a bitfield. | Jordan Rose |
2013-03-26 | <rdar://problem/13278115> Improve diagnostic when failing to bind an rvalue r... | Douglas Gregor |
2012-12-20 | Implement AST dumper for Decls. | Alexander Kornienko |
2012-10-19 | Prior to adding the new "expected-no-diagnostics" directive to VerifyDiagnost... | Andy Gibbs |
2012-06-19 | Improve the error message when a function overload candidate is rejected | Kaelyn Uhrain |
2011-12-15 | Modify how the -verify flag works. Currently, the verification string and | Richard Trieu |
2011-10-18 | Switch to the C++11 warning flags in tests. | David Blaikie |
2011-10-13 | Update all tests other than Driver/std.cpp to use -std=c++11 rather than | Richard Smith |
2011-10-04 | Don't allow an rvalue reference to bind to the result of a calling a | Douglas Gregor |
2011-08-15 | Teach reference initialization from the result of a user-defined | Douglas Gregor |
2011-01-24 | Re-instate r123977/r123978, my updates of the reference-binding | Douglas Gregor |
2011-01-22 | revert r123977 and r123978 to fix PR9026. | Rafael Espindola |
2011-01-21 | Update the reference-binding implementation used for overload | Douglas Gregor |
2011-01-21 | Add more reference-binding examples from the C++0x working paper, all of whic... | Douglas Gregor |
2011-01-21 | More work to bring reference binding up to the latest C++0x | Douglas Gregor |
2011-01-21 | When performing reference binding via a conversion function, perform | Douglas Gregor |
2011-01-20 | More tests for reference binding in the presence of rvalue | Douglas Gregor |
2011-01-20 | Start refactoring reference binding to more closely match the C++0x | Douglas Gregor |
2011-01-20 | Add some tests for reference-collapsing and referencing binding | Douglas Gregor |
2010-11-18 | Calculate the value kind of an expression when it's created and | John McCall |
2010-11-12 | When performing initialization of a copy of a temporary object, use | Douglas Gregor |
2010-10-05 | In Sema's TryRefInitWithConversionFunction, suppress user conversions for the... | Argyrios Kyrtzidis |
2010-09-05 | 'const std::type_info*' instead of 'std::type_info const*' | Chris Lattner |
2010-09-05 | make clang print types as "const int *" instead of "int const*", | Chris Lattner |
2010-06-07 | PR7245: Make binding a reference to a temporary without a usable copy | Jeffrey Yasskin |
2010-06-02 | There is no dcl.init.ref p16. This test deals with p5. | Jeffrey Yasskin |
2010-04-24 | Actually produce base paths for CastExprs of kind CK_DerivedToBase. | Anders Carlsson |
2010-04-18 | When checking the copy constructor for the optional copy during a | Douglas Gregor |
2010-04-18 | In C++98/03, when binding a reference to an rvalue of | Douglas Gregor |
2010-04-13 | During referencing binding, only consider conversion functions for | Douglas Gregor |
2010-03-10 | When pretty-printing tag types, only print the tag if we're in C (and | John McCall |
2010-02-26 | Commit Eli's fix for implicit conversions to array type. Fixes PR6264. | Douglas Gregor |
2010-01-29 | PR5909 had a test case for binding of const, non-volatile references | Douglas Gregor |
2010-01-29 | Fix reference-binding when we have a reference to const volatile type; | Douglas Gregor |
2010-01-13 | Improve the reporting of non-viable overload candidates by noting the reason | John McCall |
2010-01-06 | Improve the diagnostics used to report implicitly-generated class members | John McCall |
2009-12-19 | A CXXExprWithTemporaries expression is an lvalue if its subexpression | Douglas Gregor |
2009-12-18 | Switch the initialization required by return statements over to the | Douglas Gregor |
2009-12-15 | Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'. | Daniel Dunbar |
2009-12-09 | Reimplement reference initialization (C++ [dcl.init.ref]) using the | Douglas Gregor |
2009-12-07 | Remove empty test cases | Douglas Gregor |
2009-12-06 | PointerUnion == PointerUnion does not do what I thought it did. Also, fix a t... | Douglas Gregor |