| Commit message (Expand) | Author | Age | Files | Lines |
| * | Remove VarDecl from CXXConstructExpr. | Anders Carlsson | 2009-05-30 | 1 | -1/+1 |
| * | Pretty printing and improved representation for namespace alias declarations | Douglas Gregor | 2009-05-30 | 1 | -1/+3 |
| * | Printing for using directives, e.g., | Douglas Gregor | 2009-05-30 | 1 | -2/+6 |
| * | Reimplement much of the way that we track nested classes in the | Douglas Gregor | 2009-05-27 | 1 | -0/+17 |
| * | Reintroduce the home for exception specs, and make Sema fill it. However, kee... | Sebastian Redl | 2009-05-27 | 1 | -0/+3 |
| * | When evaluating a VarDecl as a constant or determining whether it is | Douglas Gregor | 2009-05-26 | 1 | -1/+1 |
| * | When assigning from an rvalue to a const reference, the implicit cast from T ... | Anders Carlsson | 2009-05-19 | 1 | -1/+1 |
| * | Deal with an icky corner case where we were complaining that a catch | Douglas Gregor | 2009-05-18 | 1 | -1/+1 |
| * | Template instantiation for C++ try/catch statements. | Douglas Gregor | 2009-05-18 | 1 | -18/+42 |
| * | Rewrite PureVirtualMethodCollector to use the overridden methods. Fixes <rdar... | Anders Carlsson | 2009-05-17 | 1 | -22/+26 |
| * | Reflow some comments. | Mike Stump | 2009-05-16 | 1 | -18/+16 |
| * | Better diagnostics for covariance when checking overriding return types. | Anders Carlsson | 2009-05-14 | 1 | -6/+65 |
| * | Add return type checking for overriding virtual functions. We currently don't... | Anders Carlsson | 2009-05-14 | 1 | -0/+22 |
| * | Friend declarations are only valid inside class definitions. | Anders Carlsson | 2009-05-11 | 1 | -0/+9 |
| * | Implement the notions of the "current instantiation" and "unknown | Douglas Gregor | 2009-05-11 | 1 | -2/+2 |
| * | Back out r70506 (exception spec in AST) again. We won't have exception specs ... | Sebastian Redl | 2009-05-06 | 1 | -3/+0 |
| * | When determining whether an expression refers to a bit-field, look | Douglas Gregor | 2009-05-02 | 1 | -1/+1 |
| * | Replace a bunch of static_cast + release with takeAs. | Anders Carlsson | 2009-05-01 | 1 | -1/+1 |
| * | C++ destructors can have a single unnamed void parameter. Fixes <rdar://probl... | Anders Carlsson | 2009-04-30 | 1 | -1/+8 |
| * | Rework the way we handle constructor decls to be less hacky and fix PR3948 co... | Anders Carlsson | 2009-04-30 | 1 | -13/+0 |
| * | Make a home for exception specs in the AST. Now Sema can hook them up. | Sebastian Redl | 2009-04-30 | 1 | -0/+3 |
| * | Track down return statements in the handlers of a function-try-block of const... | Sebastian Redl | 2009-04-27 | 1 | -0/+21 |
| * | Don't allow catch declarations to name an abstract class | Sebastian Redl | 2009-04-27 | 1 | -0/+5 |
| * | change a couple more c++ sema methods to be based on isinvalid bits. | Chris Lattner | 2009-04-25 | 1 | -22/+18 |
| * | various "is invalid" cleanups for C++ ctors/dtors. | Chris Lattner | 2009-04-25 | 1 | -47/+48 |
| * | This is a pretty big cleanup for how invalid decl/type are handle. | Chris Lattner | 2009-04-25 | 1 | -6/+6 |
| * | Create a CXXConstructExpr instead of a CXXTemporaryObjectExpr in InitializeVa... | Anders Carlsson | 2009-04-24 | 1 | -5/+2 |
| * | Implement lvalue test for conditional expressions. | Sebastian Redl | 2009-04-17 | 1 | -0/+2 |
| * | Add support for the __has_trivial_destructor type trait. | Anders Carlsson | 2009-04-17 | 1 | -3/+15 |
| * | If a class has a non-trivial constructor that doesn't take any arguments, we ... | Anders Carlsson | 2009-04-16 | 1 | -10/+14 |
| * | Fix a crash bug when comparing overload quality of conversion operators with ... | Sebastian Redl | 2009-04-16 | 1 | -1/+1 |
| * | When we create an implicit CXXTemporaryObjectExpr we don't need to check that... | Anders Carlsson | 2009-04-16 | 1 | -6/+1 |
| * | Disable the code I added before until I understand what's causing default2.cp... | Anders Carlsson | 2009-04-16 | 1 | -0/+5 |
| * | Add support for the __has_trivial_constructor type trait. | Anders Carlsson | 2009-04-16 | 1 | -0/+30 |
| * | When declaring a variable that has a constructor and a direct initializer, fo... | Anders Carlsson | 2009-04-15 | 1 | -9/+13 |
| * | fix some out of date comments pointed out by Sebastian | Chris Lattner | 2009-04-12 | 1 | -2/+1 |
| * | Parse deleted member functions. Parsing member declarations goes through a di... | Sebastian Redl | 2009-04-12 | 1 | -3/+7 |
| * | Propagate the ASTContext to various AST traversal and lookup functions. | Douglas Gregor | 2009-04-09 | 1 | -18/+23 |
| * | Introduce a "-fixit" mode to clang-cc that applies code-modification hints. | Douglas Gregor | 2009-04-02 | 1 | -1/+1 |
| * | Add some more code modification hints | Douglas Gregor | 2009-04-01 | 1 | -2/+3 |
| * | Push DeclGroup much farther throughout the compiler. Now the various | Chris Lattner | 2009-03-29 | 1 | -5/+4 |
| * | Reintroduce r67870 (rval ref overloading), since I can't reproduce any test f... | Sebastian Redl | 2009-03-29 | 1 | -22/+38 |
| * | various cleanups | Chris Lattner | 2009-03-29 | 1 | -2/+1 |
| * | More improvements to namespace aliases. We now support everything except alia... | Anders Carlsson | 2009-03-28 | 1 | -4/+18 |
| * | Fix lookup bug | Anders Carlsson | 2009-03-28 | 1 | -1/+1 |
| * | Create AST nodes for namespace aliases. | Anders Carlsson | 2009-03-28 | 1 | -1/+6 |
| * | Parse the location of the 'namespace' token to ActOnNamespaceAliasDef. No fun... | Anders Carlsson | 2009-03-28 | 1 | -5/+5 |
| * | Introduce a new OpaquePtr<N> struct type, which is a simple POD wrapper for a | Chris Lattner | 2009-03-28 | 1 | -92/+91 |
| * | As Eli pointed out, it is possible that a namespace lookup is ambiguous! | Anders Carlsson | 2009-03-28 | 1 | -2/+0 |
| * | Check that the alias points to a valid namespace. | Anders Carlsson | 2009-03-28 | 1 | -0/+15 |