| Commit message (Expand) | Author | Age | Files | Lines |
* | In Sema::InstantiateStaticDataMemberDefinition, pass the var decl to the cons... | Argyrios Kyrtzidis | 2013-02-24 | 1 | -3/+13 |
* | Handle alignas(foo...) pack expansions. | Richard Smith | 2013-02-22 | 1 | -23/+63 |
* | Implement C++11 [dcl.align]p6-p8, and C11 6.7.5/7. This had to be split out of | Richard Smith | 2013-02-22 | 1 | -4/+5 |
* | Use None rather than Optional<T>() where possible. | David Blaikie | 2013-02-21 | 1 | -3/+2 |
* | Include llvm::Optional in clang/Basic/LLVM.h | David Blaikie | 2013-02-20 | 1 | -8/+8 |
* | Replace TypeLoc llvm::cast support to be well-defined. | David Blaikie | 2013-02-18 | 1 | -13/+12 |
* | Implement [dcl.align]p5 and C11 6.7.5/4: alignas cannot underalign. | Richard Smith | 2013-02-01 | 1 | -0/+6 |
* | [Sema][Attr]Fix alignment attribute printing. | Michael Han | 2013-02-01 | 1 | -3/+1 |
* | Propagate the spelling list index for an attribute across template instantiat... | Richard Smith | 2013-01-29 | 1 | -3/+5 |
* | Clean up: since we have FunctionDecl::IsInline, make it store the right value | Richard Smith | 2013-01-25 | 1 | -0/+9 |
* | ArrayRef-ize some ctor initializer related APIs | David Blaikie | 2013-01-17 | 1 | -1/+1 |
* | s/CPlusPlus0x/CPlusPlus11/g | Richard Smith | 2013-01-02 | 1 | -8/+8 |
* | PR13470: Ensure that copy-list-initialization isntantiates as | Richard Smith | 2012-12-19 | 1 | -39/+0 |
* | Change DeclContextLookup(Const)Result to (Mutable)ArrayRef<NamedDecl*>, as pe... | David Blaikie | 2012-12-19 | 1 | -7/+7 |
* | PR14558: Compute triviality of special members (etc) at the end of the class | Richard Smith | 2012-12-11 | 1 | -15/+14 |
* | Properly compute triviality for explicitly-defaulted or deleted special members. | Richard Smith | 2012-12-08 | 1 | -10/+3 |
* | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth | 2012-12-04 | 1 | -3/+3 |
* | Store this Decl* as a Decl* instead of a uintptr_t. No functionality change. | Nick Lewycky | 2012-11-16 | 1 | -2/+2 |
* | s/tranform/transform/ | Benjamin Kramer | 2012-11-14 | 1 | -1/+1 |
* | Ugly ugly hack for libstdc++-4.6 and libstdc++-4.7 compatibility. These | Richard Smith | 2012-10-23 | 1 | -0/+16 |
* | Fixed instantiated operators source range. | Abramo Bagnara | 2012-10-04 | 1 | -1/+1 |
* | Don't produce diagnostics for missing ctor-initializers during template | Richard Smith | 2012-09-25 | 1 | -1/+1 |
* | Per C++11 [class.friend]p3, the 'friend' keyword must appear first in a | Richard Smith | 2012-09-20 | 1 | -1/+1 |
* | Actually rebuild function types properly when adjusting the function | Douglas Gregor | 2012-09-13 | 1 | -4/+13 |
* | When we substitute into the type of a function based on the | Douglas Gregor | 2012-09-13 | 1 | -2/+17 |
* | PR13811: Add a FunctionParmPackExpr node to handle references to function | Richard Smith | 2012-09-12 | 1 | -1/+2 |
* | PR9023: A template template parameter whose template parameter list contains an | Richard Smith | 2012-09-07 | 1 | -7/+101 |
* | Do not add using directives to a function decl context when instantiating. | Abramo Bagnara | 2012-09-05 | 1 | -1/+6 |
* | Remove ASTOwningVector, it doesn't own anything and provides no value over Sm... | Benjamin Kramer | 2012-08-23 | 1 | -1/+1 |
* | Rip out remnants of move semantic emulation and smart pointers in Sema. | Benjamin Kramer | 2012-08-23 | 1 | -1/+1 |
* | Check access to friend declarations. There's a number of different | John McCall | 2012-08-10 | 1 | -14/+34 |
* | Final piece of core issue 1330: delay computing the exception specification of | Richard Smith | 2012-07-27 | 1 | -2/+13 |
* | PR12917: Remove incorrect assumption that lambda mangling information cannot | Richard Smith | 2012-07-22 | 1 | -2/+2 |
* | PR13386: When matching up parameters between a function template declaration | Richard Smith | 2012-07-18 | 1 | -24/+22 |
* | Fix rejects-valid: explicit specialization of redeclared deleted function tem... | David Blaikie | 2012-07-16 | 1 | -1/+1 |
* | Stop instantiating a class if we hit a static_assert failure. Also, if the | Richard Smith | 2012-07-11 | 1 | -5/+4 |
* | PR9793: Treat substitution as an instantiation step for the purpose of the | Richard Smith | 2012-07-08 | 1 | -1/+0 |
* | Make explicit specializations at class scope work | Nico Weber | 2012-06-25 | 1 | -2/+11 |
* | Reapplying the changes from r158717 as they were rolled back to avoid merge c... | Aaron Ballman | 2012-06-19 | 1 | -2/+4 |
* | Revert r158700 and dependent patches r158716, r158717, and r158731. | Jakob Stoklund Olesen | 2012-06-19 | 1 | -4/+2 |
* | Improves parsing and semantic analysis for MS __declspec attributes. This in... | Aaron Ballman | 2012-06-19 | 1 | -2/+4 |
* | Documentation cleanup: fixing a typo from my previous 'fix'. | James Dennett | 2012-06-17 | 1 | -1/+1 |
* | Documentation cleanup: | James Dennett | 2012-06-15 | 1 | -2/+2 |
* | Still more Doxygen documentation fixes: | James Dennett | 2012-06-14 | 1 | -2/+2 |
* | PR13064: Store whether an in-class initializer uses direct or copy | Richard Smith | 2012-06-10 | 1 | -1/+1 |
* | Revert Decl's iterators back to pointer value_type rather than reference valu... | David Blaikie | 2012-06-06 | 1 | -2/+2 |
* | Correct the starting location for instantiations of field declarations which | Richard Smith | 2012-05-23 | 1 | -1/+1 |
* | Fix our handling of visibility in explicit template instantiations. | Rafael Espindola | 2012-05-15 | 1 | -1/+2 |
* | Move Sema::VerifyIntegerConstantExpression() and | Douglas Gregor | 2012-05-04 | 1 | -3/+4 |
* | Remove the ref/value inconsistency in filter_decl_iterator. | David Blaikie | 2012-04-30 | 1 | -2/+2 |