Age | Commit message (Expand) | Author |
2009-10-13 | test commit | John Thompson |
2009-10-08 | Improve checking for specializations of member classes of class | Douglas Gregor |
2009-09-26 | Rework the Parse-Sema interaction for friends to better support friend | Douglas Gregor |
2009-09-25 | WIP implementation of explicit instantiation of function templates, | Douglas Gregor |
2009-09-12 | Add RUN line. | Daniel Dunbar |
2009-09-12 | Add a test for PR3733. | Anders Carlsson |
2009-09-09 | Remove tabs, and whitespace cleanups. | Mike Stump |
2009-08-24 | Improve top-level-semicolon test a bit | Douglas Gregor |
2009-08-24 | Top-level semicolons are allowed in C++0x. Fixes PR4755. | Douglas Gregor |
2009-08-06 | First pass at friend semantics. | John McCall |
2009-08-01 | Ok, ok, I give in. Fix tests for unused result warning. | Daniel Dunbar |
2009-07-30 | PR3679 - handle #pragma weak | Ryan Flynn |
2009-07-25 | Implement C++ semantics for C-style and functional-style casts. This regresse... | Sebastian Redl |
2009-07-25 | Disable this test: cxx-using-declaration.cpp | Daniel Dunbar |
2009-07-23 | Fix test case, which has a control-reaches-end-of-non-void warning that was | Daniel Dunbar |
2009-07-22 | Implement support for out-of-line definitions of the class members of class | Douglas Gregor |
2009-07-22 | Implement parsing and semantic analysis for out-of-line definitions of static | Douglas Gregor |
2009-07-22 | Prep for new warning. | Mike Stump |
2009-06-27 | Fix the parser error hanlding for __builtin_offsetof to actually print | Eli Friedman |
2009-06-25 | Improved semantic analysis and AST respresentation for function | Douglas Gregor |
2009-06-24 | Fix a clang crash caused by incorrect user code. | Fariborz Jahanian |
2009-06-24 | Make sure that the template parameter lists get from the parser down to ActOn... | Douglas Gregor |
2009-06-20 | Parsing and AST support for using declarations, from John Thompson! | Douglas Gregor |
2009-06-17 | Diagnose class members that shadow a template parameter. Fixes | Douglas Gregor |
2009-06-17 | Diagnose the use of attributes on namespace aliases, from Anis Ahmad | Douglas Gregor |
2009-06-14 | change ParseStatementOrDeclaration to emit the 'missing ;' with | Chris Lattner |
2009-06-05 | Update test to work with the limited Sema for #pragma weak. | Eli Friedman |
2009-06-05 | Test for parsing #pragma weak. | Eli Friedman |
2009-06-03 | Use "()" instead of "(void)" when pretty-printing a parameter-less function t... | Argyrios Kyrtzidis |
2009-05-25 | PR4122: Tweak the ambiguity handling to handle (S())() correctly. I've | Eli Friedman |
2009-05-22 | Add a test case to make sure that an ambiguous paren expression is only parse... | Argyrios Kyrtzidis |
2009-05-22 | Handle correctly a very ugly part of the C++ syntax. We cannot disambiguate b... | Argyrios Kyrtzidis |
2009-05-22 | Parse typeof-specifier the same way as sizeof/alignof are parsed. | Argyrios Kyrtzidis |
2009-05-16 | Make the RAII extension warning silencing for __extension__ a bit | Eli Friedman |
2009-05-16 | Fixup __extension__ i = 1 parsing. Thanks Eli! | Mike Stump |
2009-05-15 | Fixup parsing for (throw,throw) and __extension__ throw 1. | Mike Stump |
2009-05-12 | Refactor the parsing of declarations so that template declarations can | Douglas Gregor |
2009-05-11 | For friend class decls, always use TK_Reference so we'll try to look up exist... | Anders Carlsson |
2009-05-06 | Add parsing of friend specifiers. | Anders Carlsson |
2009-04-29 | Have the parser communicate the exception specification to the action. | Sebastian Redl |
2009-04-28 | Simplify the scheme used for keywords, and change the classification | Eli Friedman |
2009-04-26 | The mysterious bug turns out to be an incredibly bone-headed mistake. | Sebastian Redl |
2009-04-26 | Implement function-try-blocks. However, there's a very subtle bug that I can'... | Sebastian Redl |
2009-04-21 | implement semantic analysis for @synchronized, fixing a crash on invalid | Chris Lattner |
2009-04-15 | Add warning when a tentative array definition is assumed to have one element. | Daniel Dunbar |
2009-04-13 | Improve error recovery for calls, fixing: | Chris Lattner |
2009-04-12 | Fix some C++ error recovery problems in init declarator parsing | Chris Lattner |
2009-04-12 | fix another case that assumed that GetTypeForDeclarator would never return null. | Chris Lattner |
2009-04-12 | mark the declspec as invalid when we recover instead of forcing to int, | Chris Lattner |
2009-04-12 | Diagnose invalid uses of tagged types with a missing tag. For example, in: | Chris Lattner |