| Commit message (Expand) | Author | Age | Files | Lines |
* | Store this Decl* as a Decl* instead of a uintptr_t. No functionality change. | Nick Lewycky | 2012-11-16 | 1 | -21/+19 |
* | Fix template instantiation of attributes. More specifically, fix the case | DeLesley Hutchins | 2012-09-26 | 1 | -0/+20 |
* | Fix the AST representation for non-type template arguments to encode | Eli Friedman | 2012-09-26 | 1 | -3/+4 |
* | Remove Context argument from TemplateDeductionInfo constructor. It was no lon... | Craig Topper | 2012-09-19 | 1 | -1/+1 |
* | Fix a couple of Doxygen issues pointed out by -Wdocumentation. | Dmitri Gribenko | 2012-09-12 | 1 | -1/+1 |
* | PR13811: Add a FunctionParmPackExpr node to handle references to function | Richard Smith | 2012-09-12 | 1 | -1/+92 |
* | Rip out remnants of move semantic emulation and smart pointers in Sema. | Benjamin Kramer | 2012-08-23 | 1 | -1/+1 |
* | Don't form a null reference when checking for validity of an anonymous | Richard Smith | 2012-08-17 | 1 | -2/+1 |
* | Check access to friend declarations. There's a number of different | John McCall | 2012-08-10 | 1 | -0/+3 |
* | Final piece of core issue 1330: delay computing the exception specification of | Richard Smith | 2012-07-27 | 1 | -2/+1 |
* | PR12057: Allow variadic template pack expansions to cross lambda boundaries. | Richard Smith | 2012-07-25 | 1 | -0/+13 |
* | PR13365: Fix code which was trying to treat an array of DeducedTemplateArgument | Richard Smith | 2012-07-16 | 1 | -56/+46 |
* | Stop instantiating a class if we hit a static_assert failure. Also, if the | Richard Smith | 2012-07-11 | 1 | -1/+8 |
* | PR13136: | Richard Smith | 2012-07-09 | 1 | -2/+10 |
* | PR9793: Treat substitution as an instantiation step for the purpose of the | Richard Smith | 2012-07-08 | 1 | -49/+42 |
* | Be more eager about setting the 'Invalid' bit on an invalid class | Douglas Gregor | 2012-07-02 | 1 | -13/+10 |
* | Give L__FUNCTION__ the right type in templates. PR13206. | Nico Weber | 2012-06-25 | 1 | -1/+5 |
* | Still more Doxygen documentation fixes: | James Dennett | 2012-06-14 | 1 | -1/+1 |
* | PR13064: Store whether an in-class initializer uses direct or copy | Richard Smith | 2012-06-10 | 1 | -3/+1 |
* | CXXThisScopeRAII objects aren't free, don't compute one if it's unused. | Benjamin Kramer | 2012-05-17 | 1 | -1/+1 |
* | PR12710 - broken default argument handling for templates. | David Blaikie | 2012-05-01 | 1 | -7/+5 |
* | Fix PR12378: provide conversion warnings on default args of function templates | David Blaikie | 2012-04-30 | 1 | -2/+7 |
* | PR12647: An alias template instantiation which occurs in a SFINAE context is | Richard Smith | 2012-04-26 | 1 | -1/+6 |
* | Implement DR1330 in C++11 mode, to support libstdc++4.7 which uses it. | Richard Smith | 2012-04-17 | 1 | -0/+32 |
* | Implement C++11 [expr.prim.general]p3, which permits the use of 'this' | Douglas Gregor | 2012-04-16 | 1 | -18/+51 |
* | Implement support for null non-type template arguments for non-type | Douglas Gregor | 2012-04-06 | 1 | -9/+15 |
* | When defining a forward-declared enum, don't try to attach the definition to | Richard Smith | 2012-03-23 | 1 | -1/+2 |
* | Support for definitions of member enumerations of class templates outside the | Richard Smith | 2012-03-23 | 1 | -1/+14 |
* | Instantiating a class template should not instantiate the definition of any | Richard Smith | 2012-03-14 | 1 | -31/+140 |
* | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie | 2012-03-11 | 1 | -3/+3 |
* | Introduce support for template instantiation of lambda | Douglas Gregor | 2012-02-13 | 1 | -0/+8 |
* | Represent C++ direct initializers as ParenListExprs before semantic analysis | Sebastian Redl | 2012-02-11 | 1 | -6/+8 |
* | For class template implicit instantiation, also update its location to point | Argyrios Kyrtzidis | 2012-02-11 | 1 | -0/+1 |
* | Move instantiateTemplateAttribute into the sema namespace, make helpers static. | Benjamin Kramer | 2012-02-06 | 1 | -2/+6 |
* | When we're substituting into a function parameter pack and expect to | Douglas Gregor | 2012-01-25 | 1 | -8/+18 |
* | Fix PR11848: decree that an alias template contains an unexpanded parameter pack | Richard Smith | 2012-01-25 | 1 | -1/+1 |
* | Delayed template instantiation of late-parsed attributes. | DeLesley Hutchins | 2012-01-20 | 1 | -0/+23 |
* | Remove unreachable code in Clang. (replace with llvm_unreachable where approp... | David Blaikie | 2012-01-17 | 1 | -2/+2 |
* | De-virtualize getPreviousDecl() and getMostRecentDecl() when we know | Douglas Gregor | 2012-01-14 | 1 | -2/+2 |
* | Fix a crash on invalid, http://llvm.org/pr11599 | Nico Weber | 2011-12-20 | 1 | -2/+10 |
* | Fixed implicit instantiations source range. | Abramo Bagnara | 2011-11-18 | 1 | -1/+3 |
* | Fixed source range for template implicit instantiations. | Abramo Bagnara | 2011-10-03 | 1 | -0/+3 |
* | Only print _Bool as 'bool' when 'bool' is defined as an object-like | Douglas Gregor | 2011-09-27 | 1 | -2/+2 |
* | When 'bool' is not a built-in type but is defined as a macro, print | Douglas Gregor | 2011-09-27 | 1 | -2/+2 |
* | ArrayRef-ifying the fields passed to Sema::ActOnFields | David Blaikie | 2011-09-22 | 1 | -3/+2 |
* | ArrayRef-ifying the UnexpandedParameterPacks passed to Sema::CheckParameterPa... | David Blaikie | 2011-09-22 | 1 | -4/+2 |
* | Implement function template specialization at class scope extension in Micros... | Francois Pichet | 2011-08-14 | 1 | -2/+3 |
* | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 2011-07-23 | 1 | -16/+15 |
* | Replace r134583's fix for PR10290 with one which also works for non-value-dep... | Richard Smith | 2011-07-20 | 1 | -26/+8 |
* | Create a new expression node, SubstNonTypeTemplateParmExpr, | John McCall | 2011-07-15 | 1 | -56/+53 |