| Commit message (Expand) | Author | Age | Files | Lines | 
| *  | Representation of template type parameters and non-type template | Douglas Gregor | 2008-12-05 | 1 | -5/+46 | 
| *  | Use VerifyIntegerConstantExpression instead of isIntegerConstantExpr. Fixes P... | Anders Carlsson | 2008-12-05 | 1 | -2/+1 | 
| *  | Make Sema::CheckForConstantInitializer use Expr::Evaluate. This fixes PR3130. | Anders Carlsson | 2008-12-05 | 1 | -0/+8 | 
| *  | Initialize storage class even if we got an erroneous mutable | Douglas Gregor | 2008-12-01 | 1 | -0/+1 | 
| *  | Remove some bad characters from comment. | Sebastian Redl | 2008-11-24 | 1 | -1/+1 | 
| *  | Change a whole lot of diagnostics to take QualType's directly  | Chris Lattner | 2008-11-24 | 1 | -7/+4 | 
| *  | Rename NamedDecl::getName() to getNameAsString().  Replace a bunch of  | Chris Lattner | 2008-11-24 | 1 | -24/+24 | 
| *  | Make all the 'redefinition' diagnostics more consistent, and make the  | Chris Lattner | 2008-11-23 | 1 | -24/+24 | 
| *  | Convert IdentifierInfo's to be printed the same as DeclarationNames  | Chris Lattner | 2008-11-23 | 1 | -12/+11 | 
| *  | add support for inserting a DeclarationName into a diagnostic directly | Chris Lattner | 2008-11-23 | 1 | -3/+2 | 
| *  | Use Expr::Evaluate for case statements. Fixes PR2525 | Anders Carlsson | 2008-11-22 | 1 | -1/+1 | 
| *  | Allow redeclaration of typedefs in C++ | Douglas Gregor | 2008-11-21 | 1 | -1/+8 | 
| *  | remove the last old-fashioned Diag method.  Transition complete! | Chris Lattner | 2008-11-20 | 1 | -48/+45 | 
| *  | remove another old Diag method. | Chris Lattner | 2008-11-20 | 1 | -9/+9 | 
| *  | remove another old-school Diag method. | Chris Lattner | 2008-11-20 | 1 | -8/+6 | 
| *  | compared to the rest of the code in Sema::GetStdNamespace(), | Chris Lattner | 2008-11-20 | 1 | -1/+2 | 
| *  | remove some other identifiers that are looked up really early and only | Chris Lattner | 2008-11-20 | 1 | -5/+15 | 
| *  | Take care another assert: | Argyrios Kyrtzidis | 2008-11-19 | 1 | -3/+3 | 
| *  | Fix silly code, use IdentifierInfo* instead of std::string in | Daniel Dunbar | 2008-11-19 | 1 | -1/+1 | 
| *  | stop calling II::getName() unnecesarily in sema | Chris Lattner | 2008-11-19 | 1 | -23/+20 | 
| *  | convert some diags to use numbers instead of strings. | Chris Lattner | 2008-11-19 | 1 | -2/+1 | 
| *  | remove one more old-style Diag method. | Chris Lattner | 2008-11-19 | 1 | -17/+13 | 
| *  | Switch several more Sema Diag methods over.  This simplifies the | Chris Lattner | 2008-11-19 | 1 | -4/+4 | 
| *  | start converting Sema over to using its canonical Diag method. | Chris Lattner | 2008-11-18 | 1 | -7/+5 | 
| *  | Extend DeclarationName to support C++ overloaded operators, e.g., | Douglas Gregor | 2008-11-18 | 1 | -0/+5 | 
| *  | Implement effects of 'mutable', and a few comments from Chris on its parsing. | Sebastian Redl | 2008-11-17 | 1 | -1/+4 | 
| *  | Eliminate all of the placeholder identifiers used for constructors, | Douglas Gregor | 2008-11-17 | 1 | -29/+59 | 
| *  | Updated IdentifierResolver to deal with DeclarationNames. The names of | Douglas Gregor | 2008-11-17 | 1 | -11/+15 | 
| *  | Introduction the DeclarationName class, as a single, general method of | Douglas Gregor | 2008-11-17 | 1 | -3/+17 | 
| *  | rename Expr::tryEvaluate to Expr::Evaluate. | Chris Lattner | 2008-11-16 | 1 | -4/+4 | 
| *  | Implement parsing and semantic checking of the 'mutable' keyword. | Sebastian Redl | 2008-11-14 | 1 | -6/+12 | 
| *  | Add a new expression node, CXXOperatorCallExpr, which expresses a | Douglas Gregor | 2008-11-14 | 1 | -1/+3 | 
| *  | don't highlight field name, just put a caret on it. | Chris Lattner | 2008-11-13 | 1 | -2/+2 | 
| *  | Don't build identifiers for C++ constructors, destructors, or | Douglas Gregor | 2008-11-12 | 1 | -5/+0 | 
| *  | Fix a FIXME by improving a diagnostic, add a testcase for PR3048 | Chris Lattner | 2008-11-12 | 1 | -2/+1 | 
| *  | make TryFixInvalidVariablyModifiedType a static function. | Chris Lattner | 2008-11-12 | 1 | -2/+6 | 
| *  | Restructure code to encourage fallthrough, no functionality change. | Chris Lattner | 2008-11-12 | 1 | -10/+13 | 
| *  | fix PR3048.  I'm going to do some more work before closing it off and | Chris Lattner | 2008-11-12 | 1 | -0/+1 | 
| *  | Implement support for operator overloading using candidate operator | Douglas Gregor | 2008-11-12 | 1 | -1/+2 | 
| *  | Introduce a single AST node SizeOfAlignOfExpr for all sizeof and alignof expr... | Sebastian Redl | 2008-11-11 | 1 | -8/+4 | 
| *  | Implement C++ 'typeid' parsing and sema. | Sebastian Redl | 2008-11-11 | 1 | -1/+14 | 
| *  | Fix PR3031 by silencing follow-on errors in invalid declarations. | Chris Lattner | 2008-11-11 | 1 | -3/+4 | 
| *  | Introduce ScopedDecl::getLexicalDeclContext() which is different from ScopedD... | Argyrios Kyrtzidis | 2008-11-09 | 1 | -13/+21 | 
| *  | When a tag has nested-name ('struct foo::bar'), use not 'CurContext' but the ... | Argyrios Kyrtzidis | 2008-11-09 | 1 | -15/+19 | 
| *  | Simplify handling of nested-names in tags ('struct foo::bar'). | Argyrios Kyrtzidis | 2008-11-09 | 1 | -57/+52 | 
| *  | Implement Sema support for C++ nested-name-specifiers. | Argyrios Kyrtzidis | 2008-11-08 | 1 | -36/+144 | 
| *  | Implement support for C++ nested-name-specifiers ('foo::bar::x') in the Parse... | Argyrios Kyrtzidis | 2008-11-08 | 1 | -3/+5 | 
| *  | Changes in preparation for nested-name-specifiers. | Argyrios Kyrtzidis | 2008-11-07 | 1 | -14/+22 | 
| *  | Parsing, ASTs, and semantic analysis for the declaration of conversion | Douglas Gregor | 2008-11-07 | 1 | -0/+23 | 
| *  | Fix crash caused by this: | Argyrios Kyrtzidis | 2008-11-07 | 1 | -0/+4 |