| Commit message (Expand) | Author | Age | Files | Lines |
| * | EXTWARNify the warning about unnamed typedefs of enums | Douglas Gregor | 2009-01-22 | 1 | -2/+3 |
| * | Initial implementation of semantic analysis and ASTs for C99 | Douglas Gregor | 2009-01-22 | 1 | -0/+3 |
| * | Don't look up decls with no name (such as parameters and unnamed tagged types), | Chris Lattner | 2009-01-21 | 1 | -13/+15 |
| * | Optimize Declarator to avoid malloc/free traffic for the argument list of a | Chris Lattner | 2009-01-20 | 1 | -1/+1 |
| * | Rename DeclContext::insert to DeclContext::makeDeclVisibleInContext and docum... | Douglas Gregor | 2009-01-20 | 1 | -1/+1 |
| * | Remove ScopedDecl, collapsing all of its functionality into Decl, so | Douglas Gregor | 2009-01-20 | 1 | -50/+45 |
| * | Centralize error reporting of improper uses of incomplete types in the | Douglas Gregor | 2009-01-19 | 1 | -12/+13 |
| * | Support evaluation of vector constant expressions, and codegen of same. | Nate Begeman | 2009-01-18 | 1 | -3/+1 |
| * | Warn about typedefs of enums without any declarator name. Fixes rdar://proble... | Douglas Gregor | 2009-01-17 | 1 | -3/+3 |
| * | Teach DeclContext how to find the primary declaration for any TagDecl | Douglas Gregor | 2009-01-17 | 1 | -37/+33 |
| * | Don't ICE on user redeclaration of objc's built-in types. | Fariborz Jahanian | 2009-01-16 | 1 | -4/+11 |
| * | silence release-assert warning. | Chris Lattner | 2009-01-16 | 1 | -4/+4 |
| * | Extract code dealing with typedef declarators into a separate function. | Zhongxing Xu | 2009-01-16 | 1 | -37/+46 |
| * | Extract code dealing with variable declarator into a separate function. | Zhongxing Xu | 2009-01-16 | 1 | -99/+109 |
| * | Extract code dealing with declarators of function type into a separate function | Zhongxing Xu | 2009-01-16 | 1 | -288/+303 |
| * | PR3330: given an enum like this: | Chris Lattner | 2009-01-15 | 1 | -2/+3 |
| * | add support for initializing static vars with a cast to union (gcc extension) | Nuno Lopes | 2009-01-15 | 1 | -1/+8 |
| * | Initial implementation of member name lookup | Douglas Gregor | 2009-01-15 | 1 | -5/+21 |
| * | Refactor name lookup. | Douglas Gregor | 2009-01-14 | 1 | -191/+34 |
| * | Introduce support for C++0x explicit conversion operators (N2437) | Douglas Gregor | 2009-01-14 | 1 | -9/+27 |
| * | FunctionDecl::setParams() now uses the allocator associated with ASTContext t... | Ted Kremenek | 2009-01-14 | 1 | -3/+3 |
| * | Permitting typedefs without a name is a Microsoft/GNU extension | Douglas Gregor | 2009-01-13 | 1 | -0/+8 |
| * | Cleanup DeclContext::addDecl and DeclContext::insert interface, from Piotr Rak | Douglas Gregor | 2009-01-12 | 1 | -5/+5 |
| * | Implement support for anonymous structs and unions in C. Both C and | Douglas Gregor | 2009-01-12 | 1 | -20/+31 |
| * | Properly set the scope of non-fields declared within a struct, union, | Douglas Gregor | 2009-01-12 | 1 | -7/+37 |
| * | Fix operator precedence. | Sebastian Redl | 2009-01-11 | 1 | -1/+1 |
| * | Don't bother setting NextDeclarator for EnumConstantDecls. It isn't used | Douglas Gregor | 2009-01-09 | 1 | -4/+0 |
| * | When we see a reference to a struct, class, or union like "struct X" | Douglas Gregor | 2009-01-09 | 1 | -3/+44 |
| * | Replace DeclContext's vector of ScopedDecl pointers with a linked list | Douglas Gregor | 2009-01-09 | 1 | -2/+3 |
| * | Make sure that ScopedDecls passed to DeclContext::addDecl are added into thei... | Douglas Gregor | 2009-01-09 | 1 | -0/+8 |
| * | Remove double-insertion of EnumConstantDecls. Thanks to Zhongxing Xu for poin... | Douglas Gregor | 2009-01-08 | 1 | -5/+0 |
| * | Unify the code for defining tags in C and C++, so that we always | Douglas Gregor | 2009-01-08 | 1 | -79/+122 |
| * | This is a large/messy diff that unifies the ObjC AST's with DeclContext. | Steve Naroff | 2009-01-08 | 1 | -2/+2 |
| * | Fix PR clang/3291 | Douglas Gregor | 2009-01-07 | 1 | -3/+3 |
| * | Finished semantic analysis of anonymous unions in C++. | Douglas Gregor | 2009-01-07 | 1 | -15/+88 |
| * | Use DeclContext::getLookupContext wherever necessary to ensure that we look t... | Douglas Gregor | 2009-01-07 | 1 | -2/+3 |
| * | Initial implementation of anonymous unions (and, as a GNU extension, | Douglas Gregor | 2009-01-07 | 1 | -9/+193 |
| * | Allow Objective-C entities to be declared within a transparent context | Douglas Gregor | 2009-01-06 | 1 | -3/+1 |
| * | simplify some code using 'continue' and the new 'isInIdentifierNamespace' pre... | Chris Lattner | 2009-01-06 | 1 | -25/+25 |
| * | Minor tweaks to the transparent declcontext patch | Douglas Gregor | 2009-01-06 | 1 | -5/+3 |
| * | Add QualifiedDeclRefExpr, which retains additional source-location | Douglas Gregor | 2009-01-06 | 1 | -2/+4 |
| * | PODness and Type Traits | Sebastian Redl | 2009-01-05 | 1 | -7/+15 |
| * | Introduce support for "transparent" DeclContexts, which are | Douglas Gregor | 2009-01-05 | 1 | -15/+38 |
| * | Parser support for C++ using directives, from Piotr Rak | Douglas Gregor | 2008-12-30 | 1 | -17/+33 |
| * | Diagnose declarations that don't declare anything, and fix PR3020. | Sebastian Redl | 2008-12-28 | 1 | -4/+11 |
| * | Add support for out-of-line definitions of conversion functions and member op... | Douglas Gregor | 2008-12-26 | 1 | -2/+1 |
| * | Add full dllimport / dllexport support: both sema checks and codegen. | Anton Korobeynikov | 2008-12-26 | 1 | -4/+24 |
| * | Keep track of template arguments when we parse them. Right now, we don't actu... | Douglas Gregor | 2008-12-24 | 1 | -1/+2 |
| * | Correct the order in which we cope with end-of-class-definition | Douglas Gregor | 2008-12-24 | 1 | -3/+8 |
| * | Don't push OverloadedFunctionDecls onto the chain of declarations | Douglas Gregor | 2008-12-23 | 1 | -117/+89 |