| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | 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 |
* | handle @encode interactions with array initializers. | Chris Lattner | 2009-02-24 | 1 | -17/+21 |
* | rename CheckStringLiteralInit to CheckStringInit and pass in the | Chris Lattner | 2009-02-24 | 1 | -19/+26 |
* | make SemaRef be a reference to sema, not a pointer. | Chris Lattner | 2009-02-24 | 1 | -78/+78 |
* | move InitListChecker to be private to SemaInit.cpp | Chris Lattner | 2009-02-24 | 1 | -4/+3 |
* | Make CheckSingleInitializer a static function in SemaInit.cpp | Chris Lattner | 2009-02-24 | 1 | -13/+13 |
* | make CheckStringLiteralInit a static function in SemaInit.cpp | Chris Lattner | 2009-02-24 | 1 | -18/+19 |
* | change IsStringLiteralInit into a static function in SemaInit.cpp | Chris Lattner | 2009-02-24 | 1 | -7/+8 |
* | move some initialization checking code from SemaDecl.cpp | Chris Lattner | 2009-02-24 | 1 | -3/+156 |
* | Downgrade the "excess elements in initializer" errors to warnings *in | Douglas Gregor | 2009-02-18 | 1 | -4/+10 |
* | Fix a bug with designated initializers where we were stepping out of a | Douglas Gregor | 2009-02-12 | 1 | -8/+7 |
* | When handling "the rest" of a designated array subobject, maybe sure | Douglas Gregor | 2009-02-09 | 1 | -1/+1 |
* | Implement semantic analysis for the GNU flexible array initialization | Douglas Gregor | 2009-02-04 | 1 | -27/+127 |
* | Add iterators to LookupResult, allowing one to iterate over the | Douglas Gregor | 2009-02-02 | 1 | -0/+2 |
* | Check value-initializations that occur when an initializer list | Douglas Gregor | 2009-02-02 | 1 | -17/+106 |
* | Upgrade the "excess elements in array initializer" warning to an | Douglas Gregor | 2009-01-30 | 1 | -2/+3 |
* | Implement and test aggregate initialization in C++. Major changes: | Douglas Gregor | 2009-01-30 | 1 | -31/+155 |
* | Switch Type::isAggregateType to use the C++ definition of "aggregate | Douglas Gregor | 2009-01-30 | 1 | -2/+2 |
* | Make CodeGen produce an error if we come across a non-constant initializer li... | Douglas Gregor | 2009-01-29 | 1 | -3/+1 |
* | Introduce a new expression node, ImplicitValueInitExpr, that | Douglas Gregor | 2009-01-29 | 1 | -8/+20 |
* | Clean up designated initialization of unions, so that CodeGen doesn't | Douglas Gregor | 2009-01-29 | 1 | -3/+14 |
* | move library-specific diagnostic headers into library private dirs. Reduce | Chris Lattner | 2009-01-29 | 1 | -1/+0 |
* | fix an absolutely inscrutible gcc 4.0 error: | Chris Lattner | 2009-01-29 | 1 | -1/+5 |
* | Better documentation for our initialization checker | Douglas Gregor | 2009-01-29 | 1 | -19/+48 |
* | Move InitListChecker out of Sema.h | Douglas Gregor | 2009-01-29 | 1 | -0/+76 |
* | Eliminate infinite looping in a wacky case with designated initializers. Simp... | Douglas Gregor | 2009-01-29 | 1 | -17/+24 |