Age | Commit message (Expand) | Author |
2009-11-19 | Deduce a ConstantArrayType from a value-dependent initializer list | Douglas Gregor |
2009-11-19 | Cope with an amusingly little anomaly with dependent types and | Douglas Gregor |
2009-11-16 | First part of changes to eliminate problems with cv-qualifiers and | Douglas Gregor |
2009-10-16 | Remove the ConstantArrayType subtypes. This information is preserved in the | John McCall |
2009-09-23 | Improve diagnostic location information when checking the initialization of a... | Douglas Gregor |
2009-09-21 | Change all the Type::getAsFoo() methods to specializations of Type::getAs(). | John McCall |
2009-09-15 | Issue good diagnostics when initialization failes due to | Fariborz Jahanian |
2009-09-09 | Improve handling of initialization by constructor, by ensuring that | Douglas Gregor |
2009-09-09 | Remove tabs, and whitespace cleanups. | Mike Stump |
2009-09-07 | BuildCXXConstructExpr now takes a MultiExprArg. | Anders Carlsson |
2009-09-05 | Pass the ConstructLoc to BuildCXXConstructExpr. | Anders Carlsson |
2009-08-27 | Add an InOverloadResolution flag to TryCopyInitialization. | Anders Carlsson |
2009-08-27 | Remove more default arguments. | Anders Carlsson |
2009-08-27 | Remove default argument from TryCopyInitialization. | Anders Carlsson |
2009-08-25 | BuildCXXConstructExpr now returns an OwningExprResult. | Anders Carlsson |
2009-08-16 | AddInitializerToDecl can't take a FullExprArg. Make it take an ExprArg, and c... | Anders Carlsson |
2009-08-15 | BuildCXXConstructExpr doesn't need to take an ASTContext. | Anders Carlsson |
2009-08-10 | Take 2 on AltiVec-style vector initializers. | Nate Begeman |
2009-08-10 | Revert r78535, it is causing a number of failures to build projects. | Daniel Dunbar |
2009-08-09 | AltiVec-style vector initializer syntax, vec4 a = (vec4)(a, b, c, d); | Nate Begeman |
2009-08-06 | Set and use Elidable in elimination of copy ctors. | Fariborz Jahanian |
2009-08-05 | Handle destruction of temporaries used in default argument | Fariborz Jahanian |
2009-08-05 | Patch to improve ir-gen for constructors with default argument | Fariborz Jahanian |
2009-08-04 | Canonicalize else. | Mike Stump |
2009-07-29 | Change uses of: | Ted Kremenek |
2009-07-17 | Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods | Ted Kremenek |
2009-07-17 | Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), ... | Ted Kremenek |
2009-07-07 | Extra vector element initializers in OpenCL is an error, not a warning. | Nate Begeman |
2009-07-06 | Keep track of the Expr used to describe the size of an array type, | Douglas Gregor |
2009-06-30 | De-ASTContext-ify DeclContext. | Argyrios Kyrtzidis |
2009-06-26 | Improve error recovery in C++: when we hit 'implicit int' cases in C++, | Chris Lattner |
2009-06-13 | Allow initializing a vector with a vector in addition to allowing a list | Eli Friedman |
2009-05-31 | Fix for PR4285: allow intializing a const wchar_t array with a wide | Eli Friedman |
2009-05-30 | Remove VarDecl from CXXConstructExpr. | Anders Carlsson |
2009-05-30 | Remove VarDecl from CheckInitializerTypes now that CXXConstructExpr doesn't n... | Anders Carlsson |
2009-05-29 | Make sure we don't give the wrong warning, and make sure not to set | Eli Friedman |
2009-05-29 | Add an assertion so that we don't accidentally build constant arrays of | Eli Friedman |
2009-05-29 | Revert r72575, which isn't really right, and fix up other code to | Eli Friedman |
2009-05-29 | Avoid dumping during semantic analysis when checking array types when | Mike Stump |
2009-05-27 | Fix another test case. | Anders Carlsson |
2009-05-27 | Relax an assert to an if check. | Anders Carlsson |
2009-05-27 | Create CXXConstructExprs when constructing via copy initialization. | Anders Carlsson |
2009-05-21 | Template instantiation for GNU array-range designators. | Douglas Gregor |
2009-05-21 | Template instantiation for C99 designated initializers, because we | Douglas Gregor |
2009-05-21 | Use v.data() instead of &v[0] when SmallVector v might be empty. | Jay Foad |
2009-05-16 | PR3009: Get rid of bogus warning for scalar compound literals. | Eli Friedman |
2009-05-16 | Reflow some comments. | Mike Stump |
2009-05-01 | Replace more release+static_cast with takeAs. | Anders Carlsson |
2009-04-25 | fix PR4073 by making designated initializer checking code use | Chris Lattner |
2009-04-16 | Attempt to fix a read-after-free running test/Sema/designated-initializers.c. | Eli Friedman |