| Commit message (Expand) | Author | Age | Files | Lines |
* | Check for unexpanded parameter packs in the name that guards a | Douglas Gregor | 2011-10-25 | 1 | -1/+1 |
* | There's no point in marking a declaration invalid just because it | Douglas Gregor | 2011-10-20 | 1 | -9/+11 |
* | Diagnose class template (partial) specializations that occur in the | Douglas Gregor | 2011-10-20 | 1 | -1/+10 |
* | Fix pr9789, assert-on-invalid while instantiating an (invalid) class template... | David Blaikie | 2011-10-19 | 1 | -17/+16 |
* | -Wc++98-compat and -Wc++98-compat-pedantic warnings for Sema, part 1. | Richard Smith | 2011-10-18 | 1 | -43/+68 |
* | Add -Wc++11-compat warning for an inline specifier on an explicit instantiation. | Richard Smith | 2011-10-18 | 1 | -2/+4 |
* | Refactor the checking for explicit template instantiations being performed in | Richard Smith | 2011-10-18 | 1 | -31/+27 |
* | [temp.explicit]p1: constexpr cannot be specified in explicit instantiations. | Richard Smith | 2011-10-14 | 1 | -3/+6 |
* | When declaring an out-of-line template, attempt to rebuild any types | Douglas Gregor | 2011-10-14 | 1 | -0/+48 |
* | Move some bool flags out of function parameter lists. | Kaelyn Uhrain | 2011-10-11 | 1 | -3/+3 |
* | Support for C1x _Atomic specifier (see testcase). This is primarily being co... | Eli Friedman | 2011-10-06 | 1 | -0/+4 |
* | Fixed source range for template implicit instantiations. | Abramo Bagnara | 2011-10-03 | 1 | -1/+1 |
* | Only print _Bool as 'bool' when 'bool' is defined as an object-like | Douglas Gregor | 2011-09-27 | 1 | -1/+1 |
* | When 'bool' is not a built-in type but is defined as a macro, print | Douglas Gregor | 2011-09-27 | 1 | -1/+1 |
* | Get rid of useless helper Sema::CastCategory. | Eli Friedman | 2011-09-27 | 1 | -2/+4 |
* | Removing a bunch of dead returns/breaks after llvm_unreachables. | David Blaikie | 2011-09-23 | 1 | -5/+0 |
* | Switch assert(0/false) llvm_unreachable. | David Blaikie | 2011-09-23 | 1 | -5/+6 |
* | Don't use TemplateArgumentListInfo inside AST nodes because it may leak. | Argyrios Kyrtzidis | 2011-09-22 | 1 | -3/+1 |
* | Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear t... | Francois Pichet | 2011-09-17 | 1 | -3/+3 |
* | Specializations cannot be module-hidden. Diagnose attempts to do so. | Douglas Gregor | 2011-09-09 | 1 | -0/+6 |
* | __module_private__ is inherited by redeclarations of an entity, and | Douglas Gregor | 2011-09-09 | 1 | -5/+10 |
* | Propagate __module_private__ from previous declarations to later | Douglas Gregor | 2011-09-09 | 1 | -3/+5 |
* | Changed references of BaseTy, MemInitTy, CXXScopeTy, TemplateParamsTy to CXXB... | Richard Trieu | 2011-09-09 | 1 | -2/+2 |
* | Modules: introduce the __module_private__ declaration specifier, which | Douglas Gregor | 2011-09-09 | 1 | -4/+8 |
* | Fix a crash-on-invalid. | Matt Beaumont-Gay | 2011-08-25 | 1 | -1/+1 |
* | Implement function template specialization at class scope extension in Micros... | Francois Pichet | 2011-08-14 | 1 | -3/+12 |
* | When performing the lookup in the current scope for a member access to | Douglas Gregor | 2011-08-10 | 1 | -1/+3 |
* | Make sure to canonicalize the argument type of a non-type template | Douglas Gregor | 2011-08-09 | 1 | -2/+3 |
* | Add support for C++0x unicode string and character literals, from Craig Topper! | Douglas Gregor | 2011-07-27 | 1 | -3/+15 |
* | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 2011-07-23 | 1 | -14/+14 |
* | Restore the C-style cast hack for enum template arguments, | John McCall | 2011-07-15 | 1 | -1/+10 |
* | Create a new expression node, SubstNonTypeTemplateParmExpr, | John McCall | 2011-07-15 | 1 | -30/+24 |
* | Random cleanup: | Francois Pichet | 2011-07-08 | 1 | -8/+7 |
* | Introduce the notion of instantiation dependence into Clang's AST. A | Douglas Gregor | 2011-07-01 | 1 | -2/+5 |
* | Preserve that a TemplateName was arrived at by substituting | John McCall | 2011-06-30 | 1 | -1/+2 |
* | Add support for C++ namespace-aware typo correction, e.g., correcting | Douglas Gregor | 2011-06-28 | 1 | -10/+15 |
* | Objective-ARC++: infer template type arguments of | Douglas Gregor | 2011-06-17 | 1 | -2/+14 |
* | Automatic Reference Counting. | John McCall | 2011-06-15 | 1 | -4/+11 |
* | When performing substitution of default template template parameters | Douglas Gregor | 2011-06-15 | 1 | -10/+0 |
* | Made changes to how 'struct'/'class' mismatches are handled in -Wmismatched-t... | Richard Trieu | 2011-06-10 | 1 | -4/+6 |
* | Diagnose the condition in C++ [temp.expl.spec]p16 that prohibits | Douglas Gregor | 2011-06-06 | 1 | -0/+37 |
* | Revert r132544. Accidental commit. I got confused with the Tortoise SVN menu. | Francois Pichet | 2011-06-03 | 1 | -2/+0 |
* | (no commit message) | Francois Pichet | 2011-06-03 | 1 | -0/+2 |
* | When checking the instantiation of a default template argument against | Douglas Gregor | 2011-06-03 | 1 | -9/+14 |
* | Fix an incorrect warning about explicit template specializations for | Douglas Gregor | 2011-06-01 | 1 | -1/+1 |
* | Objective-C doesn't consider the use of incomplete types as method | Douglas Gregor | 2011-05-27 | 1 | -0/+10 |
* | Implement a new type node, UnaryTransformType, designed to represent a | Alexis Hunt | 2011-05-24 | 1 | -0/+5 |
* | Audit and finish the implementation of C++0x nullptr, fixing two | Douglas Gregor | 2011-05-21 | 1 | -5/+17 |
* | Diagnose the presence of storage-class-specifiers on explicit | Douglas Gregor | 2011-05-21 | 1 | -3/+13 |
* | Introduce Type::isSignedIntegerOrEnumerationType() and | Douglas Gregor | 2011-05-20 | 1 | -4/+4 |