| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Added ParenType type node. | Abramo Bagnara | 2010-12-10 | 1 | -3/+1 |
* | It's kindof silly that ExtQuals has an ASTContext&, and we can use that | John McCall | 2010-12-10 | 1 | -2/+2 |
* | A typename specifier can end up referring to a unresolved using | Douglas Gregor | 2010-12-09 | 1 | -1/+18 |
* | PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() and | Jay Foad | 2010-12-07 | 1 | -1/+1 |
* | Added struct/class syntactic info for c++0x scoped enum. | Abramo Bagnara | 2010-12-03 | 1 | -1/+1 |
* | A few tweaks to the value-kind computation: | John McCall | 2010-11-23 | 1 | -1/+9 |
* | In some situations, TemplateArgumentLoc wasn't setting TypeSourceLoc (see | Craig Silverstein | 2010-11-18 | 1 | -3/+8 |
* | Calculate the value kind of an expression when it's created and | John McCall | 2010-11-18 | 1 | -7/+13 |
* | Assorted work leading towards the elimination of CK_Unknown. | John McCall | 2010-11-15 | 1 | -1/+4 |
* | Diagnose attempst to template using declarations and using directives. | John McCall | 2010-11-10 | 1 | -0/+8 |
* | Remove broken support for variadic templates, along with the various | Douglas Gregor | 2010-11-07 | 1 | -79/+65 |
* | No really, we don't have a retain/release system for statements/expressions | John McCall | 2010-10-26 | 1 | -3/+3 |
* | Diagnose the declaration of template template parameters that | Douglas Gregor | 2010-10-21 | 1 | -1/+6 |
* | When matching template parameter lists to template-ids in a scope specifier | John McCall | 2010-10-20 | 1 | -18/+98 |
* | White-listing templated-scope friend decls is a good idea, but doing it | John McCall | 2010-10-16 | 1 | -11/+1 |
* | Introduce a bit into Type that keeps track of whether there are any | Douglas Gregor | 2010-10-13 | 1 | -1/+1 |
* | Eliminates a clang warning. | Fariborz Jahanian | 2010-10-13 | 1 | -0/+1 |
* | Teach the warning about unnamed/local types in template arguments to | Douglas Gregor | 2010-10-13 | 1 | -25/+220 |
* | Introduce support for emitting diagnostics (warnings + their notes) | Douglas Gregor | 2010-10-12 | 1 | -0/+3 |
* | Handle dependent friends more explicitly and deal with the possibility | John McCall | 2010-10-12 | 1 | -1/+11 |
* | Implement C++0x scoped enumerations, from Daniel Wallin! (and tweaked a | Douglas Gregor | 2010-10-08 | 1 | -1/+2 |
* | Parentheses around address non-type template argument is demoted to an extens... | Abramo Bagnara | 2010-09-13 | 1 | -8/+12 |
* | When diagnosing C++ [temp.expl.spec]p3 in C++98/03 mode, downgrade the | Douglas Gregor | 2010-09-12 | 1 | -5/+11 |
* | Implement C++0x semantics for [temp.expl.spec]p2, which loosens the | Douglas Gregor | 2010-09-12 | 1 | -4/+13 |
* | Allow anonymous and local types. The support was already in place for these, | Chandler Carruth | 2010-09-03 | 1 | -21/+23 |
* | Implement basic support for indexing function templates in | Douglas Gregor | 2010-08-31 | 1 | -1/+2 |
* | Add a forgotten place where the enclosing namespace set matters, plus a big t... | Sebastian Redl | 2010-08-31 | 1 | -2/+2 |
* | Rename DeclContext::getLookupContext to getRedeclContext and change its seman... | Sebastian Redl | 2010-08-31 | 1 | -16/+17 |
* | If filtering a lookup result leaves it ambiguous, keep the ambiguity | John McCall | 2010-08-28 | 1 | -1/+6 |
* | Fix the memory leak of FloatingLiteral/IntegerLiteral. | Argyrios Kyrtzidis | 2010-08-28 | 1 | -1/+1 |
* | One who seeks knowledge learns something new every day. | John McCall | 2010-08-26 | 1 | -16/+16 |
* | Split out a header to hold APIs meant for the Sema implementation from Sema.h. | John McCall | 2010-08-25 | 1 | -1/+1 |
* | GCC didn't care for my attempt at API compatibility, so brute-force everything | John McCall | 2010-08-25 | 1 | -9/+8 |
* | Support explicit instantiation of function templates and members of class | Chandler Carruth | 2010-08-25 | 1 | -4/+2 |
* | Move more stuff out of Sema.h. | John McCall | 2010-08-25 | 1 | -0/+2 |
* | More header elimination. The goal of all this is to allow Parser to | John McCall | 2010-08-24 | 1 | -0/+1 |
* | Struggle mightily against header inclusion in Sema.h. | John McCall | 2010-08-24 | 1 | -0/+1 |
* | OwningExprResult -> ExprResult. This patch brought to you by | John McCall | 2010-08-24 | 1 | -12/+12 |
* | Abstract out passing around types and kill off ActionBase. | John McCall | 2010-08-24 | 1 | -12/+18 |
* | Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). | John McCall | 2010-08-23 | 1 | -6/+7 |
* | Push DeclGroupRefs and TemplateNames in an opaque but type-safe way | John McCall | 2010-08-23 | 1 | -2/+1 |
* | DeclPtrTy -> Decl * | John McCall | 2010-08-21 | 1 | -65/+63 |
* | Another step in the process of making the parser depend on Sema: | John McCall | 2010-08-20 | 1 | -2/+2 |
* | Revert r111609, which is failing its new test. | Douglas Gregor | 2010-08-20 | 1 | -10/+1 |
* | Detect efforts to declare a template member friend and explicitly ignore them. | John McCall | 2010-08-20 | 1 | -1/+10 |
* | Generate Attr subclasses with TableGen. | Alexis Hunt | 2010-08-18 | 1 | -1/+1 |
* | Commit improved version of 111026 & 111027. | Argyrios Kyrtzidis | 2010-08-15 | 1 | -1/+5 |
* | Work around a crash when checking access to injected class names | John McCall | 2010-08-13 | 1 | -2/+7 |
* | Perform access control when template lookup finds a class template. | John McCall | 2010-08-13 | 1 | -4/+11 |
* | Move Sema's headers into include/clang/Sema, renaming a few along the way. | Douglas Gregor | 2010-08-12 | 1 | -2/+2 |