| Commit message (Expand) | Author | Age | Files | Lines |
| * | When filling in value initializations within an initializer list, be | Douglas Gregor | 2009-12-22 | 1 | -65/+86 |
| * | Fix review comment; no visible change. | Eli Friedman | 2009-12-20 | 1 | -28/+29 |
| * | Switch default-initialization of variables of class type (or array thereof) o... | Douglas Gregor | 2009-12-20 | 1 | -1/+2 |
| * | Initialization improvements: addition of string initialization and a few | Eli Friedman | 2009-12-19 | 1 | -11/+32 |
| * | Switch more of Sema::CheckInitializerTypes over to | Douglas Gregor | 2009-12-19 | 1 | -80/+43 |
| * | Switch the initialization required by return statements over to the | Douglas Gregor | 2009-12-18 | 1 | -32/+267 |
| * | When value-initializing a class with no user-defined constructors but | Douglas Gregor | 2009-12-16 | 1 | -10/+34 |
| * | In Sema::CheckInitializerTypes, replace a use of CheckReferenceInit with an I... | Douglas Gregor | 2009-12-16 | 1 | -5/+11 |
| * | Eliminate Sema::CheckValueInitialization; its callers now use | Douglas Gregor | 2009-12-16 | 1 | -93/+120 |
| * | Fix semantic diagnostics that embed English works, from Nicola Gigante! | Douglas Gregor | 2009-12-16 | 1 | -7/+7 |
| * | Switch the C++ new expression over to InitializationSequence, rather | Douglas Gregor | 2009-12-16 | 1 | -25/+122 |
| * | Implement value initialization in InitializationSequence; untested | Douglas Gregor | 2009-12-15 | 1 | -10/+56 |
| * | Minor cleanups for constructor initialization in InitializationSequence | Douglas Gregor | 2009-12-14 | 1 | -2/+2 |
| * | Constructor initialization for InitializationSequence. Untested WIP. | Douglas Gregor | 2009-12-14 | 1 | -1/+144 |
| * | Implement user-defined conversions in InitializationSequence. WPI that | Douglas Gregor | 2009-12-14 | 1 | -2/+120 |
| * | Silence some release build warnings. | Chandler Carruth | 2009-12-13 | 1 | -0/+1 |
| * | Un-namespace-qualify llvm_unreachable. It's a macro, so the qualification gave | Jeffrey Yasskin | 2009-12-12 | 1 | -2/+2 |
| * | Fix a recent regression from the initialization changes. | Eli Friedman | 2009-12-11 | 1 | -9/+12 |
| * | Move initialization via initializer list over to InitializationSequences. | Douglas Gregor | 2009-12-10 | 1 | -8/+121 |
| * | Reimplement reference initialization (C++ [dcl.init.ref]) using the | Douglas Gregor | 2009-12-09 | 1 | -4/+966 |
| * | remove some extraneous syntax: sourceloc implicitly converts to sourcerange. | Chris Lattner | 2009-12-06 | 1 | -2/+2 |
| * | Deduce a ConstantArrayType from a value-dependent initializer list | Douglas Gregor | 2009-11-19 | 1 | -3/+25 |
| * | Cope with an amusingly little anomaly with dependent types and | Douglas Gregor | 2009-11-19 | 1 | -1/+22 |
| * | First part of changes to eliminate problems with cv-qualifiers and | Douglas Gregor | 2009-11-16 | 1 | -1/+2 |
| * | Remove the ConstantArrayType subtypes. This information is preserved in the | John McCall | 2009-10-16 | 1 | -3/+3 |
| * | Improve diagnostic location information when checking the initialization of a... | Douglas Gregor | 2009-09-23 | 1 | -1/+2 |
| * | Change all the Type::getAsFoo() methods to specializations of Type::getAs(). | John McCall | 2009-09-21 | 1 | -5/+5 |
| * | Issue good diagnostics when initialization failes due to | Fariborz Jahanian | 2009-09-15 | 1 | -5/+17 |
| * | Improve handling of initialization by constructor, by ensuring that | Douglas Gregor | 2009-09-09 | 1 | -12/+32 |
| * | Remove tabs, and whitespace cleanups. | Mike Stump | 2009-09-09 | 1 | -150/+150 |
| * | BuildCXXConstructExpr now takes a MultiExprArg. | Anders Carlsson | 2009-09-07 | 1 | -1/+2 |
| * | Pass the ConstructLoc to BuildCXXConstructExpr. | Anders Carlsson | 2009-09-05 | 1 | -1/+2 |
| * | Add an InOverloadResolution flag to TryCopyInitialization. | Anders Carlsson | 2009-08-27 | 1 | -1/+2 |
| * | Remove more default arguments. | Anders Carlsson | 2009-08-27 | 1 | -2/+8 |
| * | Remove default argument from TryCopyInitialization. | Anders Carlsson | 2009-08-27 | 1 | -1/+4 |
| * | BuildCXXConstructExpr now returns an OwningExprResult. | Anders Carlsson | 2009-08-25 | 1 | -1/+7 |
| * | AddInitializerToDecl can't take a FullExprArg. Make it take an ExprArg, and c... | Anders Carlsson | 2009-08-16 | 1 | -4/+1 |
| * | BuildCXXConstructExpr doesn't need to take an ASTContext. | Anders Carlsson | 2009-08-15 | 1 | -2/+1 |
| * | Take 2 on AltiVec-style vector initializers. | Nate Begeman | 2009-08-10 | 1 | -7/+38 |
| * | Revert r78535, it is causing a number of failures to build projects. | Daniel Dunbar | 2009-08-10 | 1 | -38/+7 |
| * | AltiVec-style vector initializer syntax, vec4 a = (vec4)(a, b, c, d); | Nate Begeman | 2009-08-09 | 1 | -7/+38 |
| * | Set and use Elidable in elimination of copy ctors. | Fariborz Jahanian | 2009-08-06 | 1 | -2/+3 |
| * | Handle destruction of temporaries used in default argument | Fariborz Jahanian | 2009-08-05 | 1 | -0/+1 |
| * | Patch to improve ir-gen for constructors with default argument | Fariborz Jahanian | 2009-08-05 | 1 | -2/+2 |
| * | Canonicalize else. | Mike Stump | 2009-08-04 | 1 | -4/+3 |
| * | Change uses of: | Ted Kremenek | 2009-07-29 | 1 | -10/+10 |
| * | Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods | Ted Kremenek | 2009-07-17 | 1 | -10/+10 |
| * | Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), ... | Ted Kremenek | 2009-07-17 | 1 | -10/+10 |
| * | Extra vector element initializers in OpenCL is an error, not a warning. | Nate Begeman | 2009-07-07 | 1 | -0/+4 |
| * | Keep track of the Expr used to describe the size of an array type, | Douglas Gregor | 2009-07-06 | 1 | -2/+3 |