Age | Commit message (Expand) | Author |
2008-11-18 | start converting Sema over to using its canonical Diag method. | Chris Lattner |
2008-11-18 | Extend DeclarationName to support C++ overloaded operators, e.g., | Douglas Gregor |
2008-11-17 | Implement effects of 'mutable', and a few comments from Chris on its parsing. | Sebastian Redl |
2008-11-17 | Eliminate all of the placeholder identifiers used for constructors, | Douglas Gregor |
2008-11-17 | Updated IdentifierResolver to deal with DeclarationNames. The names of | Douglas Gregor |
2008-11-17 | Introduction the DeclarationName class, as a single, general method of | Douglas Gregor |
2008-11-16 | rename Expr::tryEvaluate to Expr::Evaluate. | Chris Lattner |
2008-11-14 | Implement parsing and semantic checking of the 'mutable' keyword. | Sebastian Redl |
2008-11-14 | Add a new expression node, CXXOperatorCallExpr, which expresses a | Douglas Gregor |
2008-11-13 | don't highlight field name, just put a caret on it. | Chris Lattner |
2008-11-12 | Don't build identifiers for C++ constructors, destructors, or | Douglas Gregor |
2008-11-12 | Fix a FIXME by improving a diagnostic, add a testcase for PR3048 | Chris Lattner |
2008-11-12 | make TryFixInvalidVariablyModifiedType a static function. | Chris Lattner |
2008-11-12 | Restructure code to encourage fallthrough, no functionality change. | Chris Lattner |
2008-11-12 | fix PR3048. I'm going to do some more work before closing it off and | Chris Lattner |
2008-11-12 | Implement support for operator overloading using candidate operator | Douglas Gregor |
2008-11-11 | Introduce a single AST node SizeOfAlignOfExpr for all sizeof and alignof expr... | Sebastian Redl |
2008-11-11 | Implement C++ 'typeid' parsing and sema. | Sebastian Redl |
2008-11-11 | Fix PR3031 by silencing follow-on errors in invalid declarations. | Chris Lattner |
2008-11-09 | Introduce ScopedDecl::getLexicalDeclContext() which is different from ScopedD... | Argyrios Kyrtzidis |
2008-11-09 | When a tag has nested-name ('struct foo::bar'), use not 'CurContext' but the ... | Argyrios Kyrtzidis |
2008-11-09 | Simplify handling of nested-names in tags ('struct foo::bar'). | Argyrios Kyrtzidis |
2008-11-08 | Implement Sema support for C++ nested-name-specifiers. | Argyrios Kyrtzidis |
2008-11-08 | Implement support for C++ nested-name-specifiers ('foo::bar::x') in the Parse... | Argyrios Kyrtzidis |
2008-11-07 | Changes in preparation for nested-name-specifiers. | Argyrios Kyrtzidis |
2008-11-07 | Parsing, ASTs, and semantic analysis for the declaration of conversion | Douglas Gregor |
2008-11-07 | Fix crash caused by this: | Argyrios Kyrtzidis |
2008-11-06 | Parsing, ASTs, and semantic analysis for the declaration of overloaded | Douglas Gregor |
2008-11-05 | Parsing, representation, and preliminary semantic analysis of destructors. | Douglas Gregor |
2008-11-05 | Keep track of whether a C++ class is an aggregate. Don't allow initialization... | Douglas Gregor |
2008-11-05 | Implement C++ copy-initialization for declarations. There is now some | Douglas Gregor |
2008-11-03 | Implicit support for direct initialization of objects of class type, e.g., | Douglas Gregor |
2008-10-31 | Add support for parsing and representing C++ constructor declarations. | Douglas Gregor |
2008-10-29 | Simplify and correct the check for function redefinitions. This does two things: | Douglas Gregor |
2008-10-29 | Temporary disable the const-object-declaration-without-initializer check, bec... | Douglas Gregor |
2008-10-29 | Implement initialization of a reference (C++ [dcl.init.ref]) as part | Douglas Gregor |
2008-10-28 | Rename ExplicitCCastExpr to CStyleCastExpr | Douglas Gregor |
2008-10-28 | Improve our handling of (C++) references within Clang. Specifically: | Douglas Gregor |
2008-10-27 | Refactor the expression class hierarchy for casts. Most importantly: | Douglas Gregor |
2008-10-27 | Replace common diagnostic with a convenience function. | Steve Naroff |
2008-10-24 | -Add support for cv-qualifiers after function declarators. | Argyrios Kyrtzidis |
2008-10-24 | PR2942: FunctionDecls by typedef crash the C++ front-end | Douglas Gregor |
2008-10-22 | Restrict creation of OverloadedFunctionDecl only to C++ (it was getting used ... | Argyrios Kyrtzidis |
2008-10-21 | Preliminary support for function overloading | Douglas Gregor |
2008-10-16 | Implement #pragma pack use in structure packing. The general approach | Daniel Dunbar |
2008-10-14 | Add Sema implementation of #pragma pack stack. | Daniel Dunbar |
2008-10-12 | silence some release-assert warnings. | Chris Lattner |
2008-10-06 | Make sema and codegen allow __builtin___CFStringMakeConstantString as a valid | Chris Lattner |
2008-10-06 | Add a Expr::isEvaluatable method, eliminate isBuiltinConstantExpr | Chris Lattner |
2008-10-06 | "Enhance" CheckArithmeticConstantExpression to accept ?: with a constant | Chris Lattner |