Age | Commit message (Expand) | Author |
2012-07-07 | Reject 'int a[1][];' in Sema rather than crashing in IR generation. Found by a | Richard Smith |
2012-06-26 | Whitespace. | Chad Rosier |
2012-06-22 | Documentation cleanup: | James Dennett |
2012-06-20 | Structured comment parsing, first step. | Dmitri Gribenko |
2012-06-19 | Reapply r158700 and fixup patches, minus one hunk that slipped through and | Sean Hunt |
2012-06-19 | Revert r158700 and dependent patches r158716, r158717, and r158731. | Jakob Stoklund Olesen |
2012-06-19 | Improve the specification of spellings in Attr.td. | Sean Hunt |
2012-06-18 | Handle C++11 attribute namespaces automatically. | Sean Hunt |
2012-06-15 | Documentation cleanup: | James Dennett |
2012-06-14 | Still more Doxygen documentation fixes: | James Dennett |
2012-06-12 | If parsing a trailing-return-type fails, don't pretend we didn't have one at | Richard Smith |
2012-06-06 | Revert Decl's iterators back to pointer value_type rather than reference valu... | David Blaikie |
2012-06-02 | Fix typos found by http://github.com/lyda/misspell-check | Benjamin Kramer |
2012-05-22 | Recognize the MS inheritance attributes and turn them into attributes | John McCall |
2012-05-09 | objective-c. Fixes a 'fixit' where location of | Fariborz Jahanian |
2012-05-04 | Move Sema::VerifyIntegerConstantExpression() and | Douglas Gregor |
2012-05-04 | Switch RequireLiteralType() off of PartialDiagnostic. | Douglas Gregor |
2012-05-04 | Move Sema::RequireCompleteType() and Sema::RequireCompleteExprType() | Douglas Gregor |
2012-05-02 | Revert most of r154844, which was disabled in r155975. Keep around the | Richard Smith |
2012-04-30 | Remove the ref/value inconsistency in filter_decl_iterator. | David Blaikie |
2012-04-25 | If a type is non-literal by virtue of being incomplete produce notes | Richard Smith |
2012-04-23 | Teach RequireCompleteType about multi-dimensional arrays. Fixes | Douglas Gregor |
2012-04-16 | Implement the last part of C++ [class.mem]p2, delaying the parsing of | Douglas Gregor |
2012-04-05 | Implement C90 pedantic warning for duplicate declaration specifiers which are... | Eli Friedman |
2012-04-04 | For PR11916: Add support for g++'s __int128 keyword. Unlike __int128_t, this is | Richard Smith |
2012-03-22 | During the instantiation of a class template specialization, that | Richard Smith |
2012-03-12 | Fix parsing of trailing-return-type. Types are syntactically prohibited from | Richard Smith |
2012-03-11 | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie |
2012-03-10 | [Sema] A tag decl that is marked as invalid and is used in a decl-spec, | Argyrios Kyrtzidis |
2012-03-09 | [AST/Sema/libclang] Replace getSourceRange().getBegin() with getLocStart(). | Daniel Dunbar |
2012-02-24 | Make helper static. | Benjamin Kramer |
2012-02-20 | Make RequireLiteralType work correctly with incomplete array types. PR12037. | Eli Friedman |
2012-02-18 | Unify our computation of the type of a captured reference to a | Douglas Gregor |
2012-02-13 | Update constexpr implementation to match CWG's chosen approach for core issues | Richard Smith |
2012-02-12 | Implement the standard decltype() semantics described in C++11 | Douglas Gregor |
2012-02-12 | Within the body of a lambda expression, decltype((x)) for an | Douglas Gregor |
2012-02-11 | Make sure to try instantiating a templated type which is used in an _Atomic | Richard Smith |
2012-02-10 | PR11684, core issue 1417: | Richard Smith |
2012-02-10 | Track whether a function type has a trailing return type as type sugar. Use this | Richard Smith |
2012-02-09 | CWG issue 1405: mutable members are allowed in literal types, but can't undergo | Richard Smith |
2012-02-08 | Only complain about __strong __strong id, not __strong SomeStrongTypedef | John McCall |
2012-02-08 | Revise the SplitQualType interface to make it its own thing instead of | John McCall |
2012-02-06 | Added source location for the template keyword in DependentTemplateSpecializa... | Abramo Bagnara |
2012-02-06 | Removed redundant location info from ElaboratedTypeLoc / DependentNameLoc / D... | Abramo Bagnara |
2012-02-06 | Added location for template keyword in TemplateSpecializationTypeLoc. In the ... | Abramo Bagnara |
2012-02-04 | In C++11 mode, when an integral constant expression is desired and we have a | Richard Smith |
2012-02-01 | constexpr: Unlike other incomplete types, 'void' cannot possibly be completed as | Richard Smith |
2012-01-27 | Added source location for the template keyword in AST template-id expressions. | Abramo Bagnara |
2012-01-26 | Don't suppress access-control or invalid-type diagnostics from a | John McCall |
2012-01-21 | Fix some comments relating to ExpressionEvaluationContexts. Get rid of a cou... | Eli Friedman |