| Commit message (Expand) | Author | Age | Files | Lines |
| * | 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 |
| * | De-ASTContext-ify DeclContext. | Argyrios Kyrtzidis | 2009-06-30 | 1 | -15/+14 |
| * | Improve error recovery in C++: when we hit 'implicit int' cases in C++, | Chris Lattner | 2009-06-26 | 1 | -5/+4 |
| * | Allow initializing a vector with a vector in addition to allowing a list | Eli Friedman | 2009-06-13 | 1 | -1/+1 |
| * | Fix for PR4285: allow intializing a const wchar_t array with a wide | Eli Friedman | 2009-05-31 | 1 | -8/+10 |
| * | Remove VarDecl from CXXConstructExpr. | Anders Carlsson | 2009-05-30 | 1 | -2/+2 |
| * | Remove VarDecl from CheckInitializerTypes now that CXXConstructExpr doesn't n... | Anders Carlsson | 2009-05-30 | 1 | -6/+3 |
| * | Make sure we don't give the wrong warning, and make sure not to set | Eli Friedman | 2009-05-29 | 1 | -6/+9 |
| * | Add an assertion so that we don't accidentally build constant arrays of | Eli Friedman | 2009-05-29 | 1 | -1/+1 |
| * | Revert r72575, which isn't really right, and fix up other code to | Eli Friedman | 2009-05-29 | 1 | -20/+20 |
| * | Avoid dumping during semantic analysis when checking array types when | Mike Stump | 2009-05-29 | 1 | -15/+16 |
| * | Fix another test case. | Anders Carlsson | 2009-05-27 | 1 | -0/+8 |
| * | Relax an assert to an if check. | Anders Carlsson | 2009-05-27 | 1 | -3/+3 |
| * | Create CXXConstructExprs when constructing via copy initialization. | Anders Carlsson | 2009-05-27 | 1 | -2/+10 |
| * | Template instantiation for GNU array-range designators. | Douglas Gregor | 2009-05-21 | 1 | -1/+1 |
| * | Template instantiation for C99 designated initializers, because we | Douglas Gregor | 2009-05-21 | 1 | -5/+16 |
| * | Use v.data() instead of &v[0] when SmallVector v might be empty. | Jay Foad | 2009-05-21 | 1 | -2/+3 |
| * | PR3009: Get rid of bogus warning for scalar compound literals. | Eli Friedman | 2009-05-16 | 1 | -1/+1 |
| * | Reflow some comments. | Mike Stump | 2009-05-16 | 1 | -18/+16 |
| * | Replace more release+static_cast with takeAs. | Anders Carlsson | 2009-05-01 | 1 | -2/+1 |
| * | fix PR4073 by making designated initializer checking code use | Chris Lattner | 2009-04-25 | 1 | -28/+16 |
| * | Attempt to fix a read-after-free running test/Sema/designated-initializers.c. | Eli Friedman | 2009-04-16 | 1 | -3/+3 |
| * | Implement support for designated initializers that refer to members of | Douglas Gregor | 2009-04-15 | 1 | -12/+85 |
| * | Switch designated-initializer checking from using designator iterators | Douglas Gregor | 2009-04-15 | 1 | -16/+17 |
| * | Propagate the ASTContext to various AST traversal and lookup functions. | Douglas Gregor | 2009-04-09 | 1 | -11/+16 |
| * | Add some more code modification hints | Douglas Gregor | 2009-04-01 | 1 | -1/+3 |
| * | Make our diagnostics about the obsolete GNU designated-initializer | Douglas Gregor | 2009-03-28 | 1 | -2/+2 |
| * | Fix a thinko in the pre-allocation strategy for structured initializer | Douglas Gregor | 2009-03-21 | 1 | -2/+10 |
| * | When building the structured initializer list, pre-allocate storage in | Douglas Gregor | 2009-03-20 | 1 | -0/+26 |
| * | Allow flexible array initializers that are not surrounded by | Douglas Gregor | 2009-03-20 | 1 | -6/+19 |
| * | Almost complete implementation of rvalue references. One bug, and a few uncle... | Sebastian Redl | 2009-03-16 | 1 | -1/+1 |
| * | Fix PR3509 by providing correct starting locations for initializer lists | Douglas Gregor | 2009-03-01 | 1 | -11/+11 |
| * | Eliminate CXXRecordType | Douglas Gregor | 2009-02-28 | 1 | -2/+2 |
| * | fix a bozobug. | Chris Lattner | 2009-02-26 | 1 | -0/+1 |
| * | ok, not as broken as I thought, just confusing. This allows | Chris Lattner | 2009-02-26 | 1 | -1/+1 |
| * | allow wide strings to initialize arrays compatible with wchar_t. | Chris Lattner | 2009-02-26 | 1 | -6/+25 |