| Commit message (Expand) | Author | Age | Files | Lines |
* | Make it so that we actually generate definitions for explicitly | Alexis Hunt | 2011-05-12 | 1 | -1/+1 |
* | Rename "hasTrivialConstructor" to "hasTrivialDefaultConstructor" and | Alexis Hunt | 2011-05-09 | 1 | -1/+2 |
* | Fix delegating constructors stylistic issues. | Alexis Hunt | 2011-05-03 | 1 | -2/+1 |
* | Fully implement delegating constructors! | Alexis Hunt | 2011-05-01 | 1 | -7/+10 |
* | Don't waste memory if the initializer expression is empty. | Argyrios Kyrtzidis | 2011-04-28 | 1 | -4/+8 |
* | PR4304: Add warning for designators in strict c89 mode. | Eli Friedman | 2011-04-24 | 1 | -0/+3 |
* | Use the ArrayFiller to fill out "holes" in the array initializer due to desig... | Argyrios Kyrtzidis | 2011-04-21 | 1 | -1/+6 |
* | For | Argyrios Kyrtzidis | 2011-04-21 | 1 | -7/+16 |
* | In C++, when initializing an array from a pascal string, it's OK if the array | Anders Carlsson | 2011-04-14 | 1 | -0/+9 |
* | PR9669: implement correct checking for [dcl.init.string]p2. | Eli Friedman | 2011-04-11 | 1 | -5/+14 |
* | Use ExprResult& instead of Expr *& in Sema | John Wiegley | 2011-04-08 | 1 | -67/+90 |
* | Implement delegating constructors partially. | Alexis Hunt | 2011-02-26 | 1 | -0/+7 |
* | Remove the FIXME I introduced last night, and pull the logic for | Chandler Carruth | 2011-02-25 | 1 | -3/+8 |
* | Rough fix for PR9323 that prevents Clang from marking copy constructor | Chandler Carruth | 2011-02-25 | 1 | -1/+3 |
* | Implement the GNU C extension which permits the initialization of an | Douglas Gregor | 2011-02-22 | 1 | -4/+101 |
* | Reorganize subelement initialization checking, no functionality change. | John McCall | 2011-02-21 | 1 | -70/+82 |
* | Small optimization: avoid redundant checks of whether a type is an array | John McCall | 2011-02-21 | 1 | -21/+25 |
* | implement a tiny amount of codegen support for gnu array range | Chris Lattner | 2011-02-19 | 1 | -2/+7 |
* | Handle the resolution of a reference to a function template (which | Douglas Gregor | 2011-02-19 | 1 | -4/+8 |
* | When initializing struct members, the important thing is that the "initializi... | Argyrios Kyrtzidis | 2011-02-01 | 1 | -1/+2 |
* | Fixed parameter names. | Abramo Bagnara | 2011-01-27 | 1 | -2/+2 |
* | Fix whitespace. | NAKAMURA Takumi | 2011-01-27 | 1 | -348/+348 |
* | 7bit-ize. | NAKAMURA Takumi | 2011-01-27 | 1 | -3/+3 |
* | Fix a horrible bug in our handling of C-style casting, where a C-style | Douglas Gregor | 2011-01-27 | 1 | -10/+11 |
* | Implement the preference for move-construction over copy-construction | Douglas Gregor | 2011-01-21 | 1 | -4/+4 |
* | Promote the static getNRVOCandidate() function, which computed the | Douglas Gregor | 2011-01-21 | 1 | -1/+1 |
* | Improve the diagnostic that complains about binding an rvalue | Douglas Gregor | 2011-01-21 | 1 | -0/+1 |
* | More work to bring reference binding up to the latest C++0x | Douglas Gregor | 2011-01-21 | 1 | -6/+11 |
* | When performing reference binding via a conversion function, perform | Douglas Gregor | 2011-01-21 | 1 | -7/+2 |
* | Start refactoring reference binding to more closely match the C++0x | Douglas Gregor | 2011-01-20 | 1 | -34/+35 |
* | Add some tests for reference-collapsing and referencing binding | Douglas Gregor | 2011-01-20 | 1 | -3/+1 |
* | Sema::BuildCXXMemberCallExpr() can fail due to access or ambiguities, | Douglas Gregor | 2011-01-20 | 1 | -2/+1 |
* | Emit an extension diagnostic for C99 designated initializers that appear in C... | Douglas Gregor | 2011-01-16 | 1 | -0/+5 |
* | MSVC doesn't require an accessible copy-constructor when binding a temporary ... | Francois Pichet | 2010-12-31 | 1 | -1/+1 |
* | Redesign the way anonymous fields are handled in designated-initializers. | Francois Pichet | 2010-12-22 | 1 | -67/+31 |
* | Bump up property conversion earlier in the initialization process. Fixes | John McCall | 2010-12-07 | 1 | -1/+5 |
* | PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() and | Jay Foad | 2010-12-07 | 1 | -9/+13 |
* | Don't crash when initializing a subaggregate in C from a property r-value. | John McCall | 2010-12-04 | 1 | -0/+1 |
* | Although we currently have explicit lvalue-to-rvalue conversions, they're | John McCall | 2010-12-04 | 1 | -5/+11 |
* | When we're performing an explicit cast of some sort, don't complain | Douglas Gregor | 2010-12-02 | 1 | -6/+4 |
* | Switch a lot of call-sites over to using the new value-kind calculations. | John McCall | 2010-11-24 | 1 | -2/+2 |
* | Major anonymous union/struct redesign. | Francois Pichet | 2010-11-21 | 1 | -0/+5 |
* | A bundle of whitespace changes, separated out from the functional changes. | Nick Lewycky | 2010-11-20 | 1 | -6/+4 |
* | Assorted work leading towards the elimination of CK_Unknown. | John McCall | 2010-11-15 | 1 | -1/+1 |
* | When performing initialization of a copy of a temporary object, use | Douglas Gregor | 2010-11-12 | 1 | -3/+5 |
* | Extend the bitfield-truncation warning to initializations. | John McCall | 2010-11-11 | 1 | -1/+8 |
* | Unnest; no functionality change. | John McCall | 2010-11-11 | 1 | -42/+42 |
* | Add a variant of GCC-style vector types for ARM NEON. | Bob Wilson | 2010-11-10 | 1 | -1/+1 |
* | Improve our handling of C++ [class.copy]p3, which specifies that a | Douglas Gregor | 2010-11-08 | 1 | -8/+30 |
* | When attempting reference binding to an overloaded function, also | Douglas Gregor | 2010-11-08 | 1 | -10/+13 |