Age | Commit message (Expand) | Author |
2009-04-09 | Propagate the ASTContext to various AST traversal and lookup functions. | Douglas Gregor |
2009-04-01 | Add some more code modification hints | Douglas Gregor |
2009-03-28 | Make our diagnostics about the obsolete GNU designated-initializer | Douglas Gregor |
2009-03-21 | Fix a thinko in the pre-allocation strategy for structured initializer | Douglas Gregor |
2009-03-20 | When building the structured initializer list, pre-allocate storage in | Douglas Gregor |
2009-03-20 | Allow flexible array initializers that are not surrounded by | Douglas Gregor |
2009-03-16 | Almost complete implementation of rvalue references. One bug, and a few uncle... | Sebastian Redl |
2009-03-01 | Fix PR3509 by providing correct starting locations for initializer lists | Douglas Gregor |
2009-02-28 | Eliminate CXXRecordType | Douglas Gregor |
2009-02-26 | fix a bozobug. | Chris Lattner |
2009-02-26 | ok, not as broken as I thought, just confusing. This allows | Chris Lattner |
2009-02-26 | allow wide strings to initialize arrays compatible with wchar_t. | Chris Lattner |
2009-02-24 | handle @encode interactions with array initializers. | Chris Lattner |
2009-02-24 | rename CheckStringLiteralInit to CheckStringInit and pass in the | Chris Lattner |
2009-02-24 | make SemaRef be a reference to sema, not a pointer. | Chris Lattner |
2009-02-24 | move InitListChecker to be private to SemaInit.cpp | Chris Lattner |
2009-02-24 | Make CheckSingleInitializer a static function in SemaInit.cpp | Chris Lattner |
2009-02-24 | make CheckStringLiteralInit a static function in SemaInit.cpp | Chris Lattner |
2009-02-24 | change IsStringLiteralInit into a static function in SemaInit.cpp | Chris Lattner |
2009-02-24 | move some initialization checking code from SemaDecl.cpp | Chris Lattner |
2009-02-18 | Downgrade the "excess elements in initializer" errors to warnings *in | Douglas Gregor |
2009-02-12 | Fix a bug with designated initializers where we were stepping out of a | Douglas Gregor |
2009-02-09 | When handling "the rest" of a designated array subobject, maybe sure | Douglas Gregor |
2009-02-04 | Implement semantic analysis for the GNU flexible array initialization | Douglas Gregor |
2009-02-02 | Add iterators to LookupResult, allowing one to iterate over the | Douglas Gregor |
2009-02-02 | Check value-initializations that occur when an initializer list | Douglas Gregor |
2009-01-30 | Upgrade the "excess elements in array initializer" warning to an | Douglas Gregor |
2009-01-30 | Implement and test aggregate initialization in C++. Major changes: | Douglas Gregor |
2009-01-30 | Switch Type::isAggregateType to use the C++ definition of "aggregate | Douglas Gregor |
2009-01-29 | Make CodeGen produce an error if we come across a non-constant initializer li... | Douglas Gregor |
2009-01-29 | Introduce a new expression node, ImplicitValueInitExpr, that | Douglas Gregor |
2009-01-29 | Clean up designated initialization of unions, so that CodeGen doesn't | Douglas Gregor |
2009-01-29 | move library-specific diagnostic headers into library private dirs. Reduce | Chris Lattner |
2009-01-29 | fix an absolutely inscrutible gcc 4.0 error: | Chris Lattner |
2009-01-29 | Better documentation for our initialization checker | Douglas Gregor |
2009-01-29 | Move InitListChecker out of Sema.h | Douglas Gregor |
2009-01-29 | Eliminate infinite looping in a wacky case with designated initializers. Simp... | Douglas Gregor |
2009-01-28 | Remove Expr::hasSideEffects. It doesn't work anyway | Douglas Gregor |
2009-01-28 | Improvements to code-generation and semantic analysis of designated | Douglas Gregor |
2009-01-28 | Code generation support for C99 designated initializers. | Douglas Gregor |
2009-01-27 | Split the single monolithic DiagnosticKinds.def file into one | Chris Lattner |
2009-01-23 | More APSInt appeasement | Douglas Gregor |
2009-01-23 | Hopefully the last of the APSInt signedness issues with initializers. Fixes P... | Douglas Gregor |
2009-01-23 | Make sure all of the isUnsigned flags line up when comparing initializer valu... | Douglas Gregor |
2009-01-23 | Properly manage the bit-widths of APInts/APSInts in array initialization. | Douglas Gregor |
2009-01-22 | Reimplement the handling of the "current object" in designator | Douglas Gregor |
2009-01-22 | Initial implementation of semantic analysis and ASTs for C99 | Douglas Gregor |
2009-01-14 | Introduce support for C++0x explicit conversion operators (N2437) | Douglas Gregor |
2009-01-08 | Revert my previous, failed attempt to pretty-print anonymous struct/union acc... | Douglas Gregor |
2009-01-07 | Fix printing of member references to avoid displaying implicitly-generated me... | Douglas Gregor |