| Commit message (Expand) | Author | Age | Files | Lines |
| * | PR15757: When we instantiate an inheriting constructor template, also | Richard Smith | 2013-05-17 | 1 | -1/+27 |
| * | OpenMP threadprivate with qualified names. | Alexey Bataev | 2013-05-13 | 1 | -4/+4 |
| * | In VarDecl nodes, store the thread storage class specifier as written. | Enea Zaffanella | 2013-05-04 | 1 | -1/+1 |
| * | Implement most of N3638 (return type deduction for normal functions). | Richard Smith | 2013-05-04 | 1 | -5/+7 |
| * | ArrayRef'ize MultiLevelTemplateArgumentList::ArgList. Patch by Faisal Vali! | Richard Smith | 2013-05-03 | 1 | -14/+11 |
| * | ArrayRef'ize Sema::ActOnEnumBody. No functionality change. | Dmitri Gribenko | 2013-04-27 | 1 | -1/+1 |
| * | Basic support for Microsoft property declarations and | John McCall | 2013-04-16 | 1 | -0/+47 |
| * | Correctly propagate the storage class to function template instantiations. | Rafael Espindola | 2013-04-16 | 1 | -1/+1 |
| * | Fix the storage class of method instantiations. | Rafael Espindola | 2013-04-15 | 1 | -2/+2 |
| * | Annotate flavor of TLS variable (statically or dynamically initialized) onto ... | Richard Smith | 2013-04-13 | 1 | -1/+1 |
| * | C++11 inheriting constructors: support for inheriting constructor templates. | Richard Smith | 2013-04-10 | 1 | -4/+8 |
| * | Add 178663 back. | Rafael Espindola | 2013-04-03 | 1 | -5/+3 |
| * | Revert 178663. | Rafael Espindola | 2013-04-03 | 1 | -3/+5 |
| * | Don't compute a patched/semantic storage class. | Rafael Espindola | 2013-04-03 | 1 | -5/+3 |
| * | OpenMP threadprivate directive parsing and semantic analysis | Alexey Bataev | 2013-03-22 | 1 | -0/+17 |
| * | Add TagDecl::hasNameForLinkage(), which is true if the tag | John McCall | 2013-03-09 | 1 | -1/+1 |
| * | <rdar://problem/13094134> Don't try to wire up typedef names for invalid anon... | Douglas Gregor | 2013-03-08 | 1 | -1/+1 |
| * | ArrayRef-ize ASTContext::getFunctionType and Sema::BuildFunctionType. | Jordan Rose | 2013-03-08 | 1 | -8/+8 |
| * | 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 |